2026-04-23 · 1 मिनट पढ़ाई
HTTP Request टूल से API डिबगिंग
Method, headers, query, auth और body को एक ही वर्कबेंच में चलाएँ।
मुख्य बिंदु
- Import cURL first to avoid manual copy mistakes.
- Inspect status, latency, content type, and payload together for faster triage.
Start from cURL
Paste your cURL command into the URL box and click import. Method, URL, headers, and body are prefilled for quick edits.
Review generated headers before execution to avoid stale authorization values from copied snippets.
Diagnose by response metadata
Read status code first, then latency and content type. This narrows whether the issue is auth, routing, or payload format.
For JSON responses, validate and reformat the body with JSON Validator and JSON Formatter before filing tickets.
अक्सर पूछे जाने वाले प्रश्न
Should I store production credentials in history?
No. Keep secrets in your secure vault and paste temporary tokens only when required.
Why does the same request differ from browser fetch?
Server-side execution bypasses browser CORS limits and may have different network routes.