List all transactions for a specific card.
curl --request GET \
--url https://api.useproxy.ai/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>",
"merchant": {
"name": "<string>",
"id": "<string>",
"category": "<string>",
"categoryCode": "<string>",
"city": "<string>",
"country": "<string>",
"enrichedName": "<string>",
"enrichedIcon": "<string>",
"enrichedCategory": "<string>"
},
"declinedReason": "<string>",
"attestationStatus": "attested",
"notes": "<string>",
"tags": [
"<string>"
],
"category": "<string>",
"receipt": {
"hasReceipt": true,
"mimeType": "<string>",
"uploadedAt": 123
},
"authorizedAt": 123,
"postedAt": 123,
"updatedAt": 123
}
],
"hasMore": true,
"cursor": "<string>"
}API key for authentication. Get your key from the Dashboard.
The card ID
Number of items per page (max 100)
1 <= x <= 100Pagination cursor from previous response
curl --request GET \
--url https://api.useproxy.ai/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>",
"merchant": {
"name": "<string>",
"id": "<string>",
"category": "<string>",
"categoryCode": "<string>",
"city": "<string>",
"country": "<string>",
"enrichedName": "<string>",
"enrichedIcon": "<string>",
"enrichedCategory": "<string>"
},
"declinedReason": "<string>",
"attestationStatus": "attested",
"notes": "<string>",
"tags": [
"<string>"
],
"category": "<string>",
"receipt": {
"hasReceipt": true,
"mimeType": "<string>",
"uploadedAt": 123
},
"authorizedAt": 123,
"postedAt": 123,
"updatedAt": 123
}
],
"hasMore": true,
"cursor": "<string>"
}