15:03:33.150
200 GET
/api/blogs/categories/
1029ms overall
0ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 54.247.57.72
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
SEC-CH-UA-PLATFORM "Linux"
USER-AGENT Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36
ACCEPT application/json, text/plain, */*
SEC-CH-UA "Not A(Brand";v="8", "Chromium";v="132"
SEC-CH-UA-MOBILE ?0
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,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/')