Buvei
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

cardIdstringpathrequired

The card's unique identifier.

Response

cardIdstring
cardNumberstring
Unmasked PAN.
cvvstring
3 or 4-digit CVV.
expiryMonthinteger
1–12.
expiryYearinteger
Four-digit year.
Response
{
  "code": 0,
  "message": "SUCCESS",
  "data": {
    "cardId": "cid_1234567890",
    "cardNumber": "5555432112341234",
    "cvv": "123",
    "expiryMonth": 12,
    "expiryYear": 2028
  }
}