2026.02.15 19:05.225
400 POST
/api/contact-us/
2364ms overall
0ms on queries
0 queries
Request Headers
X-FORWARDED-FOR 98.97.87.131
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
CONTENT-LENGTH 223
ACCEPT application/json, text/plain, */*
CONTENT-TYPE application/json
SEC-FETCH-SITE same-site
ORIGIN https://mobischool.mw
SEC-FETCH-MODE cors
USER-AGENT Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1
REFERER https://mobischool.mw/
SEC-FETCH-DEST empty
ACCEPT-LANGUAGE en-US,en;q=0.9
PRIORITY u=3, i
ACCEPT-ENCODING gzip, deflate, br
Raw Request Body
{"email": "bones1smith@gmail.com", "content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "name": "Alex Smith", "subject": "Kondwandi George Jr Mkandawire", "phone": "4322707003"}
Request Body
This is the body of the HTTP request represented as JSON for easier reading.
{"content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "email": "bones1smith@gmail.com", "name": "Alex Smith", "phone": "4322707003", "subject": "Kondwandi George Jr Mkandawire"}
Response Headers
CONTENT-TYPE application/json
VARY Accept
ALLOW POST, 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": "bones1smith@gmail.com", "content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "name": "Alex Smith", "subject": "Kondwandi George Jr Mkandawire", "phone": "4322707003"}' https://x01-backend.mobischool.mw/api/contact-us/
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/contact-us/',
                  data={
                      'email': 'bones1smith@gmail.com',
                      'content': 'I love hearing the praise and worship. Thank you for doing this every Sunday πŸ™πŸΏπŸ™πŸΏ',
                      'name': 'Alex Smith',
                      'subject': 'Kondwandi George Jr Mkandawire',
                      'phone': '4322707003'},
                  content_type='application/json')