Get card details

Provides complete card details by identifier.

Endpoint

GET /{san}/details

Path parameters

  • san — Unique card identifier in the CinCin system

Response

Response (application/json)
{
  "created": "2025-07-03T09:21:55.605Z",
  "currency": "USD",
  "cvv": "054",
  "san": "21ce69Y8792043020317",
  "initialBalance": 5.0,
  "product": "S00E0000039",
  "status": "active",
  "balance": 6.95,
  "cardNumber": "5360181101056090",
  "expYear": 2027,
  "expMonth": 2,
  "cardSystem": "MC",
  "cardName": "My virtual card",
  "docid": 702727662
}

Response parameters

  • created (string ISO 8601) — Card creation timestamp (UTC)

  • blocked (string ISO 8601 or null) — Card blocked timestamp (UTC)

  • san (string) — Unique card identifier in the CinCin system

  • productCode (string) — Product code used to identify the card type

  • cardSystem (string) — Card system type

  • expYear (number) — Card expiration year

  • expMonth (number) — Card expiration month (1 – 12)

  • cvv (string) — Card Verification Value

  • currency (string) — Card currency code

  • cardNumber (string, null for blocked) — Full card number (if available)

  • initialBalance (decimal) — Initial funded balance of the card

  • balance (decimal, null for blocked) — Current balance of the card

  • status (string) — Actual card status

  • cardName (string) — Personalized card name

  • docid (number) — Tracking document ID

Card status enum list:

  • active

  • blocking

  • blocked

  • frozen

  • expired

  • unknown

Card systems enum list:

  • VASA

  • MC

Last updated