API-Explorer

REST-APIs im Browser mit formatierten JSON-Antworten testen

Mode:More private. Requires the target API to allow browser CORS.
Request Headers

Requests are sent directly from your browser using fetch(). The target API must allow CORS (Access-Control-Allow-Origin) for cross-origin requests to succeed. Public APIs like JSONPlaceholder work out of the box.

Test REST requests and inspect responses in one place

API debugging usually breaks across multiple tabs: one place for cURL, another for auth headers, another for JSON formatting. The API Explorer keeps the request, the response, and the formatted payload together, with browser mode for public APIs and proxy mode when CORS gets in the way. That makes it useful for classic REST APIs, AI inference endpoints, and JSON-based tool gateways.

Use the API Explorer when you need to

Replay a request from cURL

Paste a cURL command from docs, logs, or terminal history and import the method, URL, headers, auth, and body.

Inspect a JSON API response

Send the request, then switch between formatted, raw, and tree views without leaving the page.

Quickly debug auth, prompt, and header issues

Adjust bearer, basic, or API key auth alongside headers and resend the request in seconds, even when the body contains structured AI instructions or tool payloads.

How to test an API request quickly

  1. 1

    Enter the request URL manually or import a cURL command from your terminal or API docs.

  2. 2

    Choose browser mode for CORS-enabled APIs or proxy mode for blocked endpoints, then set the method, headers, auth, and request body.

  3. 3

    Inspect status, timing, response headers, and the formatted JSON body to confirm what changed.

Common API debugging workflows

Import a failing cURL request from logs

Recreate the request in the browser, tweak one header, token, or JSON body field, and resend immediately.

Check why a response changed between environments

Run the same request twice, then pass both payloads into JSON Compare for structural diffs.

Verify an endpoint before wiring it into your app

Test auth, body shape, and response timing before you start debugging frontend code.

Verwandte Tools

Häufig gestellte Fragen

Gib die API-URL ein, wähle die HTTP-Methode (GET, POST, PUT, PATCH, DELETE), füge optional Header und einen Request-Body hinzu und klicke dann auf Send. Das Tool nutzt dafür direkt die fetch()-API deines Browsers — es ist kein Backend-Server beteiligt.

CORS-Fehler (Cross-Origin Resource Sharing) entstehen, wenn der API-Server in der Response keine Access-Control-Allow-Origin-Header setzt. Das ist eine Browser-Sicherheitsfunktion. Öffentliche APIs wie JSONPlaceholder erlauben CORS, viele interne/private APIs jedoch nicht. In dem Fall brauchst du ggf. einen CORS-Proxy oder du testest aus einer Server-Umgebung heraus.

Nein. Alle Requests gehen direkt aus deinem Browser an die Ziel-API (über fetch()). Nichts läuft über unsere Server. Du kannst das im Network-Tab der DevTools prüfen: Der Request geht direkt an den API-Endpoint.

Ja. Im Auth-Tab kannst du Bearer Token, Basic Auth (Username/Passwort) oder einen eigenen API-Key-Header konfigurieren. Die Credentials werden automatisch als Request-Header gesetzt und bleiben nur in deinem Browser.