List cards
Cards
List Cards
List all cards belonging to your company, with optional filters by status, brand, or last-4 digits, plus aggregate statistics.
GET
List cards
Overview
GET /cards returns every card issued under your company, plus a statistics block summarizing counts and balances by status and per customer. Use it to populate dashboards, reconcile your own card records, or look up a specific card by last-4.
When to use it
- Render a “all cards” view in your back-office.
- Reconcile your records against Cartevo’s source of truth.
- Find a card by last-4 when a customer reports an issue without knowing the card ID.
Prerequisites
- Authenticated as a company user.
Request
Headers
Query parameters
Response
200 — Success
Note: This endpoint is not paginated — it returns the full set in a single response. If your company has more than a few thousand cards, prefer per-customer lookups via GET /customers/{id}/cards (currently undocumented; reach out if you need it).
Error responses
Code examples
cURL
Node.js (axios)
Related
GET /cards/{id}— full card detail (with optional reveal).POST /cards— issue a new card.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.