Billing

List payments

Top-up payment orders and their status, most recent first (up to 100). Use this to reconcile checkouts you opened with the top-up endpoint.

GET
/billing/payments

Top-up payment orders and their status, most recent first (up to 100). Use this to reconcile checkouts you opened with the top-up endpoint.

Authorization

ApiKeyAuth
X-API-Key<token>

Voice platform authentication secret. Create one from the API Keys endpoint or your dashboard.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/billing/payments"
{  "data": [    {      "id": "pay_7d3k1",      "amountPaise": 50000,      "currency": "INR",      "status": "completed",      "cashfreeOrderId": "order_9x8y7z",      "createdAt": "2026-06-21T09:55:00Z"    }  ]}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}