Billing periods
Billing periods use theYYYY-MM format (e.g., 2026-03). If no period is specified, the current month is used.
Usage summary
Get an aggregated summary of usage for a billing period:Response
Summary item fields
| Field | Type | Description |
|---|---|---|
type | string | Usage type. One of card_issuance, transaction, monthly_fee, api_call, kyc |
total | number | Total cost for this type in USD. Example: 150.00 |
count | number | Number of operations in this period. Example: 30 |
Detailed usage records
List individual usage records with optional filtering:Query parameters
| Parameter | Type | Description |
|---|---|---|
cursor | string | Pagination cursor from the previous response’s nextCursor |
limit | integer | Items per page (1–100, default 20). Example: 50 |
period | string | Billing period in YYYY-MM format. Example: "2026-03" |
type | string | Filter by usage type. One of card_issuance, transaction, monthly_fee, api_call, kyc |
Response
Record fields
| Field | Type | Description |
|---|---|---|
id | string | Usage record ID. Example: "usage_abc123" |
type | string | Usage type. One of card_issuance, transaction, monthly_fee, api_call, kyc |
amount | number | Cost for this operation in USD. Example: 5.00 |
referenceId | string | ID of the related resource (card, transaction, or cardholder). Example: "card_def456" |
billingPeriod | string | Billing period in YYYY-MM format. Example: "2026-03" |
createdAt | string | ISO 8601 creation timestamp. Example: "2026-03-15T10:30:00Z" |