API ReferenceCards
Get Card Sensitive Info
Retrieve unmasked PAN, CVV, and expiry.
GET/open-api/v1/cards/{cardId}/sensitive
Returns the unmasked PAN, CVV, and expiry for a card. This endpoint has stricter rate limits than general endpoints — call it only when you need to display the data to a cardholder.
Path parameters
cardIdstringpathrequiredThe card's unique identifier.
Response
cardIdstringcardNumberstringUnmasked PAN.
cvvstring3 or 4-digit CVV.
expiryMonthinteger1–12.
expiryYearintegerFour-digit year.
Response
{
"code": 0,
"message": "SUCCESS",
"data": {
"cardId": "cid_1234567890",
"cardNumber": "5555432112341234",
"cvv": "123",
"expiryMonth": 12,
"expiryYear": 2028
}
}