Führen Sie cURL aus

Testen Sie HTTP APIs online – fügen Sie cURL ein oder erstellen Sie Anfragen und sehen Sie sich Live-Antworten an.

Kostenloser Online-Client für cURL und HTTP

Debuggen Sie APIs, ohne den Browser zu verlassen. Fügen Sie einen cURL-Befehl ein, der aus DevTools- oder API-Dokumenten kopiert wurde, oder erstellen Sie manuell eine Anfrage mit Methode, URL, Headern und Text.

Dokall sendet die Anforderung serverseitig, um CORS zu umgehen, und zeigt Status, Header, Timing und Antworttext an – ggf. mit JSON Pretty-Print.

Frequently Asked Questions

What is cURL?
cURL is a command-line tool for transferring data with URLs. It supports HTTP, HTTPS, FTP, and dozens of other protocols. Developers use it to test APIs, download files, and debug network requests without writing code.
Can I test POST requests?
Yes. Paste a curl command with -X POST, -d data, or --data-raw flags. Dokall parses the command and executes the HTTP request, showing the response status, headers, and body.
Are my API keys safe?
Requests are sent from your browser directly to the target URL. Dokall does not proxy or log your requests. However, the target server receives your headers and credentials. Avoid testing with production secrets on shared machines.
Why might a request fail with CORS error?
Browsers block cross-origin requests that the target server does not allow. cURL from the terminal has no CORS restriction. If a request fails in the browser but works in terminal curl, the server needs to add Access-Control-Allow-Origin headers.
What is the difference between curl runner and curl to code?
Curl runner executes the command and shows the live response. Curl to code converts the command into JavaScript, Python, Go, or other language snippets without executing it. Use runner to test; use to code to integrate into your app.