2026.03.29 10:17.928
200 GET
/api/quizs/
7561ms overall
1ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 173.252.82.16
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
ACCEPT */*,application/json, text/plain, */*
ORIGIN https://www.mobischool.mw
SEC-FETCH-SITE same-site
SEC-FETCH-MODE cors
SEC-FETCH-DEST empty
REFERER https://www.mobischool.mw/
ACCEPT-ENCODING gzip, deflate, br, zstd
ACCEPT-LANGUAGE en-US
PRIORITY u=1, i
USER-AGENT Mozilla/5.0 (iPhone; CPU iPhone OS 26_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/23D8133 [FBAN/FBIOS;FBAV/553.0.0.43.84;FBBV/911230482;FBDV/iPhone14,5;FBMD/iPhone;FBSN/iOS;FBSV/26.3.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5;FBRV/920298829]
Response Headers
CONTENT-TYPE application/json
VARY Accept
ALLOW GET, HEAD, OPTIONS
Raw Response Body
b'{"data":[],"message":"Quizs Fetched successfully"}'
Response Body
This is the body of the HTTP response represented as JSON for easier reading.
{
    "data": [],
    "message": "Quizs Fetched successfully"
}
Curl
Curl is a command-line utility for transferring data from servers. Paste the following into a terminal to repeat this request via command line.
curl -X GET   https://x01-backend.mobischool.mw/api/quizs/
Django Test Client
The following is working python code that makes use of the Django test client. It can be used to replicate this request from within a Django unit test, or simply as standalone Python.
from django.test import Client
c = Client()
response = c.get(path='/api/quizs/')