Testing webhooks and API endpoints requires sending HTTP requests and inspecting responses. This tool sends requests directly from your browser using the Fetch API. Supports GET, POST, PUT, and DELETE methods with custom headers and request body.

Note: Browser CORS restrictions apply. Many APIs require CORS headers to allow browser requests. If you get a CORS error, the API server does not allow direct browser access. Use a CORS proxy or server-side tool instead.

Tester

Results

How to Use

  1. Enter the endpoint URL
  2. Select the HTTP method
  3. Optionally add headers (JSON format) and a request body
  4. Click Calculate to send the request

FAQ

Why do I get CORS errors?

CORS (Cross-Origin Resource Sharing) is a browser security feature. If the target server doesn't include CORS headers, browsers block the response. Use httpbin.org for testing.

Does it support authentication?

Yes. Add authorization headers in the Headers field, e.g., {"Authorization": "Bearer your-token"}.

Is my request data stored?

No. All requests are sent directly from your browser to the endpoint. Nothing passes through our servers.

Learn More

Guides that feature this tool