14:35:49.607
200 GET
/api/quizs/
78ms overall
0ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 66.249.72.233
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
ACCEPT-LANGUAGE en-US
ORIGIN https://mobischool.mw
REFERER https://mobischool.mw/
ACCEPT application/json,text/plain,*/*
FROM googlebot(at)googlebot.com
USER-AGENT Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.169 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
ACCEPT-ENCODING gzip, deflate, br
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/')