New: Vehicle RC + Driving Licence APIs now live in production. View APIs →

Everything you need to ship

Keys, sandbox, webhooks, logs and analytics โ€” all in one console. Sign in to your dashboard to manage them.

๐Ÿ”‘

API keys

Create, label and rotate keys. Separate sandbox and production credentials with independent rate limits.

๐Ÿงช

Sandbox

Deterministic fixtures for every response branch โ€” success, not-found, upstream failure and throttling.

๐Ÿš€

Production

Promote a key to live after KYC approval. Wallet is debited only on successful responses.

๐Ÿช

Webhooks

Configure a callback URL, view delivery attempts and replay failed events. HMAC-signed payloads.

๐Ÿ“œ

Usage logs

Every request with status code, latency, charged amount, IP and request ID for 90 days.

๐Ÿ“ˆ

Analytics

Success rate, p95 latency, spend by endpoint and daily volume charts.

Authentication flow

token exchange
# 1. Exchange key + secret for a JWT
curl -X POST "https://versatile-lavender-rat.163-61-39-39.cpanel.site/api/v1/auth/token" \
  -H "Content-Type: application/json" \
  -d '{"api_key":"pk_xxx","api_secret":"sk_xxx"}'

# 2. Use the JWT for up to 3600s
curl -X POST "https://versatile-lavender-rat.163-61-39-39.cpanel.site/api/v1/verify/gst" \
  -H "X-API-Key: pk_xxx" \
  -H "X-API-Secret: sk_xxx" \
  -d '{"gstin":"27AAECS1234F1Z5"}'