200 GET
/api/blogs/
115ms
overall
21ms
on queries
1
queries
{
"search": "Romantic afrobeat playlist"
}
| X-FORWARDED-FOR | 102.70.100.190 |
| X-FORWARDED-PROTO | https |
| HOST | x01-backend.mobischool.mw |
| CONNECTION | close |
| SEC-CH-UA-PLATFORM | "Android" |
| USER-AGENT | Mozilla/5.0 (Linux; Android 10; STK-L22 Build/HUAWEISTK-L22; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/150.0.7871.183 Mobile Safari/537.36[FBAN/EMA;FBLC/en_US;FBAV/509.0.0.4.214;FBCX/modulariab;] |
| ACCEPT | application/json, text/plain, */* |
| SEC-CH-UA | "Not;A=Brand";v="8", "Chromium";v="150", "Android WebView";v="150" |
| SEC-CH-UA-MOBILE | ?1 |
| ORIGIN | https://www.mobischool.mw |
| X-REQUESTED-WITH | com.facebook.lite |
| 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-GB,en-US;q=0.9,en;q=0.8 |
| CONTENT-TYPE | application/json |
| VARY | Accept |
| ALLOW | GET, POST, HEAD, OPTIONS |
b'{"data":[],"message":"Blogs Fetched successfully"}'
{
"data": [],
"message": "Blogs Fetched successfully"
}
curl -X GET https://x01-backend.mobischool.mw/api/blogs/?search=Romantic+afrobeat+playlist
from django.test import Client
c = Client()
response = c.get(path='/api/blogs/',
data={'search': 'Romantic afrobeat playlist'})