13:00:21.074
200 GET
/api/blogs/categories/
66ms overall
1ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 105.234.181.93
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
ACCEPT application/json, text/plain, */*
ORIGIN https://www.mobischool.mw
ACCEPT-ENCODING gzip, deflate, br
SEC-FETCH-MODE cors
SEC-FETCH-SITE same-site
USER-AGENT Mozilla/5.0 (iPhone; CPU iPhone OS 26_1_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/145.0.7632.108 Mobile/15E148 Safari/604.1
REFERER https://www.mobischool.mw/
SEC-FETCH-DEST empty
ACCEPT-LANGUAGE en-US,en;q=0.9
Response Headers
CONTENT-TYPE application/json
VARY Accept
ALLOW GET, HEAD, OPTIONS
Raw Response Body
b'[]'
Response Body
This is the body of the HTTP response represented as JSON for easier reading.
[]
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/blogs/categories/
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/blogs/categories/')