v1
latestOpenAPI 3.0.12026-07-26106359429.8 KBCompliance
Retrieve a card by client card ID
Beta: This endpoint is in beta and may change before general availability.
Retrieves a card by the client_card_id you assigned, supplied as a query parameter: GET /v0/cards?client_card_id=.... This is the filtered form of the cards collection and is distinct from GET /v0/cards/{id}, which takes the server-generated Card ID (card_*). The response body is identical to GET /v0/cards/{id}.
get/v0/cards
Query parameters
client_card_idstring required
The client_card_id assigned to the card.
Response
Card object retrieved successfully.
Example response
{
"id": "card_xyz123",
"account_id": "account_xyz123",
"entity_id": "entity_xyz123",
"details": {
"last_four": "1234",
"replacement_for": "card_xyz123"
}
}