Skip to content

Interactive

API Playground

Compose requests against sandbox or live, inspect the response, latency and request ID — no code required.

Updated Jul 15, 2026API 2026-07-01 Edit on GitHubReport an issue

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-Key is auto-populated for writes.
  • Edit the JSON body with syntax highlighting and inline validation.
  • Run — the panel returns status, latency, request_id and formatted JSON.
  • Copy request as cURL, TypeScript or Python.

Sample request

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"
  }'