apix.run

A minimal HTTP request inspector. Send a request — get a JSON echo of exactly what the server saw.

Endpoints

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).