Developers
A practical overview: endpoints, webhooks, and integration patterns. (Static demo content.)
API overview
Keep the integration predictable. Use idempotency keys for retries and verify webhooks.
POST /v1/payments
{
"amount": 12500,
"currency": "USD",
"payment_method": "card",
"capture": true
}
Example only. Replace with your real API spec when ready.
Integration checklist
- Use webhooksNever trust “success” only from the client.
- IdempotencyPrevent double-charges during retries.
- Store tokensReduce sensitive data handling.
Webhook events
- payment.authorizedAuthorization complete.
- payment.capturedFunds captured.
- payment.refundedRefund processed.
- dispute.openedDispute started.