Interactive
API Playground
Compose requests against sandbox or live, inspect the response, latency and request ID — no code required.
Overview
The Playground is a browser-based request runner. Pick an endpoint, edit headers and JSON body, run it against sandbox or live, and get the full response with timing and correlation ID.
Where to find it
Open Developers → Playground from the authenticated dashboard. Requests are executed with your active API key for the current environment.
How it works
- Choose method (GET/POST/PUT/PATCH/DELETE) and endpoint.
- Add headers —
Idempotency-Keyis auto-populated for writes. - Edit the JSON body with syntax highlighting and inline validation.
- Run — the panel returns status, latency,
request_idand formatted JSON. - Copy request as cURL, TypeScript or Python.
Sample request
API v1
curl -X POST https://api.korvenone.com/v1/payments \
-H "Authorization: Bearer sk_live_..." \
-H "Idempotency-Key: 4f3c0e2a-2b6f-4c" \
-H "Content-Type: application/json" \
-d '{
"amount": 250000,
"currency": "HTG",
"customer": "cus_9a2b",
"description": "Order #1042",
"capture_method": "automatic"
}'