Skip to main content
GET
/
v1
/
cards
/
{id}
Get a card
curl --request GET \
  --url https://api.ledger.so/v1/cards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "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"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The card ID (prefixed with card_).

Example:

"card_mno345"

Response

The requested card

ok
boolean
required

Indicates the request was successful.

data
object