2026.03.01 04:17.280
400 POST
/api/subscribe/
2364ms overall
8ms on queries
1 queries
Request Headers
X-FORWARDED-FOR 216.234.216.192
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
CONTENT-LENGTH 38
SEC-CH-UA-PLATFORM "Android"
USER-AGENT Mozilla/5.0 (Linux; Android 11; TECNO BD3 Build/RP1A.200720.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.7444.171 Mobile Safari/537.36
ACCEPT application/json, text/plain, */*
SEC-CH-UA "Chromium";v="142", "Android WebView";v="142", "Not_A Brand";v="99"
CONTENT-TYPE application/json
SEC-CH-UA-MOBILE ?1
ORIGIN https://www.mobischool.mw
X-REQUESTED-WITH com.google.android.apps.searchlite
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
Raw Request Body
{"email": "milwardmajawa738@gmail.com"}
Request Body
This is the body of the HTTP request represented as JSON for easier reading.
{"email": "milwardmajawa738@gmail.com"}
Response Headers
CONTENT-TYPE application/json
VARY Accept
ALLOW GET, POST, HEAD, OPTIONS
Raw Response Body
b'{"data":"Connection unexpectedly closed","message":"something went wrong"}'
Response Body
This is the body of the HTTP response represented as JSON for easier reading.
{
    "data": "Connection unexpectedly closed",
    "message": "something went wrong"
}
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 POST -H 'content-type: application/json' -d '{"email": "milwardmajawa738@gmail.com"}' https://x01-backend.mobischool.mw/api/subscribe/
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.post(path='/api/subscribe/',
                  data={'email': 'milwardmajawa738@gmail.com'},
                  content_type='application/json')