Skip to main content
GET
/
v1
/
cards
/
{cardId}
/
transactions
List transactions
curl --request GET \
  --url https://api.ledger.so/v1/cards/{cardId}/transactions \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "cardId": "<string>",
      "amount": 123,
      "currency": "<string>",
      "status": "pending",
      "createdAt": 123,
      "agentId": "<string>",
      "userId": "<string>",
      "authorizedAmount": 123,
      "localAmount": 123,
      "localCurrency": "<string>",
      "merchantName": "<string>",
      "merchantId": "<string>",
      "merchantCategory": "<string>",
      "merchantCategoryCode": "<string>",
      "merchantCity": "<string>",
      "merchantCountry": "<string>",
      "enrichedMerchantName": "<string>",
      "enrichedMerchantIcon": "<string>",
      "declinedReason": "<string>",
      "attestationStatus": "attested",
      "authorizedAt": 123,
      "postedAt": 123
    }
  ],
  "hasMore": true,
  "cursor": "<string>"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Path Parameters

cardId
string
required

The card ID

Query Parameters

limit
integer
default:20

Number of items per page (max 100)

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

Pagination cursor from previous response

Response

Transaction list

data
object[]
required
hasMore
boolean
required
cursor
string | null