Get card list

Retrieves a paginated list of cards for the authenticated user.

Endpoint

GET /list

Query parameters

  • *limit (number) — Maximum cards returned per request (limit: 100)

  • *offset (number) — Offset for pagination (0-based number of cards to skip)

Response

Response (application/json)
{
  "count": 25,
  "cards": [
    {
      "created": "2026-01-15T10:30:00.000Z",
      "blocked": "2025-07-04T12:33:05.916Z",
      "san": "1234567890",
      "pan": "************7527",
      "expyear": 2026,
      "expmonth": 12,
      "currency": "USD",
      "cardsystem": "VISA",
      "cardname": "My Card"
    },
    {
      "created": "2026-01-10T08:15:30.000Z",
      "san": "0987654321",
      "pan": "************2345",
      "expyear": 2027,
      "expmonth": 6,
      "currency": "EUR",
      "cardsystem": "MC",
      "cardName": "Business Card"
    }
  ]
}

Response Parameters

  • count (number) — Total number of cards available for pagination

  • cards (array) — Card object array

  • cards[].san (string) — Unique card identifier in the CinCin system

  • cards[].created (string ISO 8601) — Card creation timestamp (UTC)

  • cards[].pan (string) — Masked card number

  • cards[].expYear (number) — Card expiration year

  • cards[].expMonth (number) — Card expiration month (1 – 12)

  • cards[].currency (string) — Card currency code

  • cards[].cardSystem (string) — Card system type

  • cards[].cardName (string) — Personalized card name

  • cards[].blocked (string ISO 8601 or null) — Card blocked timestamp (UTC)

Last updated