12:09:56.497
200 GET
/api/quizs/
1273ms overall
1131ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 137.115.4.39
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
USER-AGENT Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0) Gecko/20100101 Firefox/146.0
ACCEPT application/json, text/plain, */*
ACCEPT-LANGUAGE en-US,en;q=0.5
ACCEPT-ENCODING gzip, deflate, br, zstd
ORIGIN https://mobischool.mw
REFERER https://mobischool.mw/
SEC-FETCH-DEST empty
SEC-FETCH-MODE cors
SEC-FETCH-SITE same-site
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/')