Build an HTTP request preview with method, URL, headers, authentication, and body.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
Method, URL, query, headers, cookies, authentication, and body are serialized into a request preview or curl command. Header names remain case-insensitive and body encoding follows the selected content type.
URL: https://api.example.com/users
Method: POST
Headers: {"Content-Type":"application/json","Authorization":"Bearer token123"}
Body: {"name":"Alice"}
Query params:
Format: curl
curl \
-X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer token123' \
-d '{"name":"Alice"}' \
'https://api.example.com/users'
API debugging, support tickets, and integration-test setup build HTTP requests.