Skip to main content
GET
/
partner
/
cards
/
{id}
/
transactions
Get card transactions
curl --request GET \
  --url https://api.contro.me/v1/partner/cards/{id}/transactions \
  --header 'x-contro-api-key: <api-key>'
{
  "data": [
    {
      "id": "tx_abc123",
      "type": "purchase",
      "amount": 42.5,
      "currency": "USD",
      "status": "completed",
      "merchant": "Coffee Shop",
      "timestamp": "2026-03-20T14:30:00Z"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Authorizations

x-contro-api-key
string
header
required

Partner API key (sk_live_* for production, sk_test_* for sandbox)

Path Parameters

id
string
required

Card ID

Example:

"card_def456"

Query Parameters

cursor
string

Cursor for pagination

limit
integer
default:20

Number of items per page (1-100)

Required range: 1 <= x <= 100

Response

Card transactions

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