cURL 실행

HTTP APIs을 온라인으로 테스트하세요. cURL을 붙여넣거나 요청을 빌드하고 실시간 응답을 확인하세요.

무료 온라인 cURL 및 HTTP 클라이언트

브라우저를 떠나지 않고 APIs을 디버그합니다. DevTools 또는 API 문서에서 복사한 cURL 명령을 붙여넣거나 메서드, URL, 헤더 및 본문을 사용하여 수동으로 요청을 빌드하세요.

Dokall은 CORS를 우회하기 위해 서버 측 요청을 보내고 상태, 헤더, 타이밍 및 응답 본문을 표시합니다. 해당하는 경우 JSON 예쁜 인쇄를 사용합니다.

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.