Skip to main content
GET
/
v1
/
cards
List cards
curl --request GET \
  --url https://api.ledger.so/v1/cards \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "items": [
      {
        "id": "card_mno345",
        "customerId": "cus_abc123",
        "type": "virtual",
        "status": "active",
        "last4": "4242",
        "expirationMonth": 12,
        "expirationYear": 2027,
        "spendingLimit": {
          "amount": 5000,
          "frequency": "per24HourPeriod"
        },
        "createdAt": "2025-01-15T13:00:00Z"
      }
    ],
    "nextCursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Format: ld_<env>_<prefix>_<secret> where <env> is test or live.

Query Parameters

limit
integer
default:50

Maximum number of items to return. Defaults to 50, maximum 200.

Required range: 1 <= x <= 200
cursor
string

Pagination cursor from a previous response's nextCursor field.

Response

A paginated list of cards

ok
boolean
required

Indicates the request was successful.

data
object