16:15:44.090
200 GET
/api/blogs/
167ms overall
1ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 74.125.216.233
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
ACCEPT-LANGUAGE en-US
ORIGIN https://www.mobischool.mw
REFERER https://www.mobischool.mw/
CACHE-CONTROL max-age=86400
ACCEPT application/json,text/plain,*/*
FROM googlebot(at)googlebot.com
USER-AGENT AdsBot-Google (+http://www.google.com/adsbot.html)
ACCEPT-ENCODING gzip, deflate, br
IF-MODIFIED-SINCE Sun, 11 Jan 2026 16:13:24 GMT
Response Headers
CONTENT-TYPE application/json
VARY Accept
ALLOW GET, POST, HEAD, OPTIONS
Raw Response Body
b'{"data":[],"message":"Blogs Fetched successfully"}'
Response Body
This is the body of the HTTP response represented as JSON for easier reading.
{
    "data": [],
    "message": "Blogs 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/blogs/
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/')