curl --location --globoff 'https://api.paylandcard.com/api/v1/cards/{{card_id}}/transactions?page=1&page_size=20' \
--header 'X-Api-Key: {{api_key}}' \
--header 'X-Timestamp: {{timestamp}}' \
--header 'X-Signature: {{signature}}' \
--header 'Accept: application/json'{
"data": {
"card_id": "card_01kx0hqyr1v9ravmyhqdwzky7c",
"transactions": [
{
"id": "txn_01kx0j2a11111111111111111",
"type": "load",
"amount": 25000,
"currency": "USD",
"status": "completed",
"description": null,
"occurred_at": "2026-07-09T12:02:00+00:00"
},
{
"id": "txn_01kx0j1z00000000000000000",
"type": "fee",
"amount": 1000,
"currency": "USD",
"status": "completed",
"description": null,
"occurred_at": "2026-07-09T12:01:00+00:00"
}
],
"page": 1,
"page_size": 20,
"total": 2
},
"status": true
}