Sample - Stripe API
GET/v1/issuing/tokens

List issuing tokens for a card

Lists Issuing tokens associated with a specified card. Use card to scope the results, optional filters to narrow them by creation time or status, and cursor parameters to navigate the list in pages.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

7 parameters
cardstringrequired
The Issuing card identifier whose tokens to list. Must not exceed 5000 characters.
createdobjectoptional
Filters tokens by creation time using a Unix timestamp or range conditions such as `gt`, `gte`, `lt`, and `lte`.
ending_beforestringoptional
Cursor identifying an object; returns the preceding page of results.
expandarray<string>optional
Specifies response fields to expand; each value can contain up to 5000 characters.
limitintegeroptional
Maximum number of tokens to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor identifying an object; returns the next page of results.
statusstringoptional
Filters tokens by status: active, deleted, requested, or suspended.
Allowed:activedeletedrequestedsuspended

2 status codes
200Returns a paginated list containing Issuing token objects, a `has_more` indicator, the list object type, and the list URL.
dataarray<Token>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
Allowed:list
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired

Error handling

card must identify the card whose tokens you want to list. status must be one of active, deleted, requested, or suspended, limit must be between 1 and 100 and defaults to 10, and expand values must not exceed 5000 characters.