apix.run
A minimal HTTP request inspector. Send a request — get a JSON echo of exactly what the server saw.
Endpoints
- GET
apix.run/getEcho query, headers, IP and URL.
- POST
apix.run/postEcho request body (JSON, form, raw).
- PUT
apix.run/putReplace-style payloads.
- PATCH
apix.run/patchPartial-update payloads.
- DELETE
apix.run/deleteEcho query and headers, no body.
Try it
terminal
$ curl https://apix.run/get?hello=world $ curl -X POST https://apix.run/post \ -H "Content-Type: application/json" \ -d '{"hello":"world"}'
Response shape
{
"args": { "hello": "world" },
"headers": {
"host": "apix.run",
"user-agent": "curl/8.7.1",
"accept": "*/*"
},
"origin": "203.0.113.42",
"url": "https://apix.run/get?hello=world",
"method": "GET"
}Requests with a body (POST, PUT, PATCH) also include data, json (when parseable) and form (for form-encoded payloads).