2026.08.27 15:12.163
200 GET
/api/blogs/
491ms overall
3ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 66.163.123.109
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
SEC-CH-UA "Chromium";v="130", "Google Chrome";v="130", "Not?A_Brand";v="99"
ACCEPT application/json, text/plain, */*
ACCEPT-LANGUAGE en
SEC-CH-UA-MOBILE ?0
USER-AGENT Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.1.123.5 Safari/537.36
SEC-CH-UA-PLATFORM "Windows"
ORIGIN https://mobischool.mw
SEC-FETCH-SITE same-site
SEC-FETCH-MODE cors
SEC-FETCH-DEST empty
REFERER https://mobischool.mw/
ACCEPT-ENCODING gzip, deflate, br
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/')