14:37:07.865
200 GET
/
279ms overall
0ms on queries
0 queries
Query Parameters
{
    "rest_route": "/wp/v2/users/"
}
Request Headers
X-FORWARDED-FOR 64.225.75.246
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
USER-AGENT Mozilla/5.0 (l9scan/2.0.839313e2531313e25373e21343; +https://leakix.net)
ACCEPT-ENCODING gzip
Response Headers
CONTENT-TYPE text/html; charset=utf-8
Raw Response Body
The raw response body is 20262 characters long and hence is too big to show here. Click here to view the raw response body.
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/?rest_route=%2Fwp%2Fv2%2Fusers%2F
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='/',
                 data={'rest_route': '/wp/v2/users/'})