GET/card_tokens/{card_token_id}

Retrieve a card token

Retrieves a card token that represents a tokenized card number for Card Push Transfers and Card Validations. Use this endpoint when you have the token's identifier and need its details. The response includes the token's card prefix, last four digits, length, and expiration date.

1 parameter
card_token_idstringrequired
The identifier of the Card Token to retrieve.

3 status codes
200Returns the Card Token object, including its identifier, creation time, card prefix, last four digits, card number length, and expiration date.
created_atstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the card token was created.
expiration_datestringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date when the card expires.
idstringrequired
The Card Token's identifier.
last4stringrequired
The last 4 digits of the card number.
lengthintegerrequired
The length of the card number.
prefixstringrequired
The prefix of the card number, usually 8 digits.
typestringrequired
A constant representing the object's type. For this resource it will always be `card_token`.
Allowed:card_token
4XXReturned when the request is invalid or cannot be processed.
5XXReturned when the server encounters an error processing the request.

Error handling

The card_token_id path parameter must identify the Card Token to retrieve.