VCNReveal VCN card data (Coming soon)

Reveal VCN card data (Coming soon)

🚧 Coming soon β€” this endpoint is not available in Sandbox or Production yet. The documentation is published so you can prepare your integration; we will announce it in the changelog when it goes live.

Returns the card data (PAN, CVV and expiration) of an already-issued VCN, identified by the vcnId returned by Create VCN. Issuance delivers this data only once β€” use this route to retrieve it again.

Security: the response carries PAN and CVV in clear text β€” keep them in memory only, do not log, do not cache (the response comes with Cache-Control: no-store) and prefer single display in your interface. The vcnId must belong to the authenticated client; otherwise, 404.

curl -X GET "https://api-sandbox.contasimples.com/credit-cards/v1/vcns/01JQ8ZK7X4M8N2P5R6T7V8W9XY/reveal" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "pan": "4111111111111111",
  "cvv": "123",
  "expirationDate": "06/2031"
}
GET
/credit-cards/v1/vcns/{vcnId}/reveal
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Bearer token from OAuth 2.0 client credentials. Format: Bearer TOKEN

Bearer token from OAuth 2.0 client credentials. Format: Bearer TOKEN
path
vcnIdstring
Required

VCN identifier returned at issuance (vcnId field).

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Bearer token from OAuth 2.0 client credentials. Format: Bearer TOKEN

Path Parameters

vcnIdstring
Required

VCN identifier returned at issuance (vcnId field).

Example:
01JQ8ZK7X4M8N2P5R6T7V8W9XY

Responses

panstring
Required

Card number (PAN). Must not be logged.

cvvstring
Required

Security code (CVV).

expirationDatestring
Required

Physical card expiration, in MM/YYYY format β€” two-digit month and four-digit year (e.g. 06/2031 = June 2031).