We just launched a new API endpoint that allows you to list transactions from a specific card. Just like the other list endpoints, it supports pagination and filtering by date.
Endpoint
GET https://api.fidel.uk/v1/cards/{cardId}/transactions
Path parameters
cardId
: String (required)
Query parameters
limit
: Number of transactions in the responsestart
: Tells the API where the previous response left off. Use${encodeURIComponent(JSON.stringify(last))}
, wherelast
is the parameter from the previous query.order
: Possible values[asc, desc]
ofdatetime
date.
For more details, check the API reference: https://reference.fidel.uk/reference/list-transactions-by-card.