Lite Toolbox
Developer Tools

HTTP Request Tester

Send GET, POST, PUT, DELETE requests from your browser. View response status, headers, and body. Export as cURL.

cURL
curl -X GET \
  'https://httpbin.org/get' \
  -H 'Accept: application/json'
Info
This tool uses the browser fetch API to send requests directly. Requests are not proxied through a server. Note: browsers enforce CORS — the target API must allow cross-origin access. If blocked, copy the cURL command and run it in a terminal.

Use Cases

How to Use

Use the workspace above to type, paste, choose, or drop content and get the result immediately. Files and text stay local in your browser by default.

FAQ

Are requests proxied?

No. Requests are sent directly from the browser.

Why do some requests fail?

Browsers enforce CORS. The target API must allow cross-origin access. Copy as cURL to run in terminal if blocked.

Are HTTPS APIs supported?

Yes. But HTTPS pages cannot request HTTP APIs (mixed content). Ensure the target is HTTPS.

Related Tools