List cards
Retrieve a paginated list of cards.
Query parameters
Filter cards by one or more account IDs.
Filter cards by one or more statuses.
Filter cards by type (virtual or physical).
Filter cards by kind (debit or credit).
Filter cards by the cardholder's user ID.
Maximum number of results to return. Allowed range: 1 to 1000. Defaults to 500
Sort order. Can be 'asc' or 'desc'. Defaults to 'asc'
The ID of the card to start the page after (exclusive). When provided, results will begin with the card immediately following this ID. Use this for standard forward pagination to get the next page of results. Cannot be combined with end_before.
The ID of the card to end the page before (exclusive). When provided, results will end just before this ID and work backwards. Use this for reverse pagination or to retrieve previous pages. Cannot be combined with start_after.
Response
Example response
{
"cards": [
{
"createdAt": "2016-07-22T00:00:00Z",
"expiration": {
"month": 8,
"year": 2026
},
"updatedAt": "2016-07-22T00:00:00Z"
}
]
}