🚀 VaultsPay API v1 is live. See what's new →
Payment CardsGet Card CVV

Get Card CVV — Retrieve Card CVV

Returns the card CVV (3 or 4 digits). This is highly sensitive data — ensure strict authorization, audit logging, and secure transport.

Limitations: Only authorized callers should use this endpoint; misuse may result in security violations.

POST{gateway}/pcs/api/v1/get-card-cvv

Payload

AttributeTypeRequiredDescription
cardIdIntegerConditionalInternal card ID. Required if token not provided.
tokenIntegerConditionalCard token (PAN surrogate). Required if cardId not provided.
Request Example
{
  "cardId": 1722
}

Response

AttributeTypeDescription
dataObjectWrapper for response data.
data.cvvStringCVV / CVC value.
200 — SUCCESS
{
  "data": {
    "cvv": "756"
  }
}