Retrieve a stored card
Fetches basic information about a previously tokenized credit card using its unique identifier.
Authorizations
Path parameters
card_identifierstringRequired
The unique card token obtained during tokenization
Header parameters
Content-TypestringRequiredDefault:
Media type of the body sent to the API
application/json
X-Datestring · date-timeRequired
ISO8601 Datetime with Timezone (yyyy-MM-dd'T'HH:mm:ssZ)
X-LoginstringRequired
Merchant X-Login API Key
AuthorizationstringRequired
Authorization control hash
X-Idempotency-KeystringOptional
Unique idempotency key for ensuring that the same request is not processed more than once
Responses
200
Successfully retrieved card information
application/json
400
Invalid request format
application/json
401
Unauthorized
application/json
404
Token not found
application/json
get
GET /v3/tokenization/{card_identifier} HTTP/1.1
Host: cc-api-stg.directa24.com
X-Login: text
Content-Type: application/json
X-Date: 2025-08-29T19:10:15.728Z
Authorization: text
Accept: */*
{
"holder_name": "Luis Perez",
"expiration_month": 10,
"expiration_year": 2028,
"last_four_digits": "1111",
"brand": "VISA",
"first_six": "411111"
}
Last updated
Was this helpful?