Skip to content

Request preview

Request inspector

JSON body
Response

The request runs in the browser via fetch. Some headers may be blocked and the server must allow CORS.

Run the request to inspect the response status, headers, and body.
Request line
Query params
Headers
Body
Formatted JSON
{
  "includeInactive": true,
  "tags": [
    "ios",
    "beta"
  ],
  "userId": 42
}
Normalized curl
curl 'https://api.example.com/v1/subscriptions' \
  --request POST \
  --header 'accept: application/json' \
  --header 'authorization: Bearer demo-token' \
  --header 'content-type: application/json' \
  --data-raw "{\n  \"includeInactive\": true,\n  \"tags\": [\n    \"ios\",\n    \"beta\"\n  ],\n  \"userId\": 42\n}"

Curl editor

Browser-side inspector, no request execution