cURLコマンドビルダー
cURLコマンドをビジュアルで作成します。HTTPメソッド、URL、ヘッダー、リクエストボディ、オプションを設定してコマンドをコピーします。
Request
ヘッダー
オプション
生成されたcURLコマンド
curl "https://api.example.com/endpoint"
使い方
cURLコマンドをビジュアルで作成します。HTTPメソッド、URL、ヘッダー、リクエストボディ、オプションを設定してコマンドをコピーします。
- 1Select your HTTP method (GET, POST, PUT, PATCH, DELETE, etc.).
- 2Enter the URL of the API endpoint you want to call.
- 3Add request headers by clicking 'Add Header' and entering key-value pairs.
- 4For POST/PUT/PATCH requests, enter your request body in JSON or raw format.
- 5Toggle options like follow redirects, verbose, or insecure as needed.
- 6Copy the generated cURL command from the output box.
主な機能
- Supports all HTTP methods: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS
- Dynamic headers — add as many key-value pairs as you need
- JSON, raw, and form data body types for POST/PUT/PATCH
- Options for redirects (-L), verbose (-v), insecure (-k), and more
- Generated command formatted for terminal with proper line breaks