v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Get Card Statement

Get a list of card transactions using a card Id

post/card/statement

Headers

api-keystring required
Authorizationstring required

Request body

cardIdstring required

The unique Id of the card you want to fetch. The Create Card endpoint returns a cardId parameter

startDateinteger required

Format as a UNIX Epoch timestamp with ms precision

endDateinteger required

Format as a UNIX Epoch timestamp with ms precision

pageinteger required

Page number

limitinteger

This parameter specifies the maximum number of results to be returned, Please note that the maximum limit is capped at 100 for each request.

Response

200

countinteger
totalinteger

Example response

{
  "transactions": [
    {
      "relatedCardTransactionId": "f334b23d-a35d-4a7e-a47e-440fafc1924f",
      "type": "CARD_AUTHORIZATION",
      "originalAmount": 10.5,
      "originalCurrency": "EUR",
      "transactionAmount": 10.5,
      "transactionCurrency": "EUR",
      "merchantId": "Striga Simulator",
      "merchantName": "Striga Simulator",
      "merchantCity": "Tallinn",
      "merchantCountryCode": "EST",
      "merchantCategoryCode": "5812",
      "accountTransactionId": "f334b23d-a35d-4a7e-a47e-440fafc1924f",
      "order": {
        "price": "1",
        "debit": {
          "currency": "BTC",
          "amountFloat": "0.00030718",
          "amount": "30718"
        },
        "credit": {
          "currency": "BTC",
          "amountFloat": "0.00030718",
          "amount": "30718"
        }
      },
      "linkedAccountId": "d8a8c7c7ceeec2c221971febd00d5685",
      "linkedAccountCurrency": "BTC",
      "parentWalletId": "0cb9da83-1252-4add-9290-e9458baf2892",
      "createdAt": "2023-11-09T11:38:50.877Z",
      "merchantTransactionAmount": "10.5",
      "merchantTransactionCurrency": "EUR",
      "accountTransactionAmount": "10.5",
      "accountTransactionCurrency": "EUR"
    }
  ],
  "count": 1,
  "total": 1
}