VCNReveal VCN card data (Coming soon)

Reveal VCN card data (Coming soon)

🚧 Coming soon — this endpoint is not yet available in Sandbox or Production. The documentation is published so you can prepare your integration; we'll announce 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.

Use it to re-display the card data without re-issuing. The CVV is fetched on demand from the network on each call — it is never persisted.

Authentication: in addition to the API key/secret, this endpoint requires mTLS at the transport layer.

Security: the response returns PAN and CVV in clear text — keep them in memory only, do not log and do not cache them (the response comes with Cache-Control: no-store). The vcnId must belong to the authenticated client; otherwise, 404.

curl -X GET "https://api-sandbox.contasimples.com/credit-cards/v1/vcns/21624502/card" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "pan": "4656350026056026",
  "cvv": "411",
  "expirationDate": "06/31",
  "holderName": "EXAMPLE COMPANY LTD"
}
GET
/credit-cards/v1/vcns/{vcnId}/card
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

Identifier of the VCN returned at issuance (the 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

Identifier of the VCN returned at issuance (the vcnId field).

Example:
21624502

Responses

panstring
Required

Card number (PAN). Must not be logged.

cvvstring
Required

Security code (CVV). Never persisted.

expirationDatestring
Required

Card expiration in MM/YY format (e.g. 06/31 = June 2031).

holderNamestring

Cardholder name.