v41

latestOpenAPI 3.0.0UNLICENSEDraw.githubusercontent.com2026-07-0839165177.6 KB
Billing

List drawdown transactions

List drawdown balance transactions for the authenticated developer

get/api/v1/billing/transactions

Query parameters

limitinteger

Maximum number of transactions to return (default 20)

afterstring

Cursor for forward pagination (transaction ID to start after)

beforestring

Cursor for backward pagination (transaction ID to end before)

Response

Paginated list of balance transactions

Example response

{
  "pageInfo": {
    "startCursor": "cbtxn_abc123",
    "endCursor": "cbtxn_xyz789"
  },
  "data": [
    {
      "description": "Balance debit for order #12345",
      "amount": {
        "currencyCode": "USD",
        "amountSubunits": 1500
      },
      "id": "cbtxn_abc123"
    }
  ]
}