List transactions
GET {{baseUrl}}/{{version}}/transaction
Your bank statement is the list of all transactions registered in your private ledger. We return it paged.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
cursor | null | String used to get the next batch of results. | |
limit | null | Number of results per cursor. Max = 100. | |
after | null | Filter entities created after this date. | |
before | null | Filter entities created before this date. | |
tags | null | Filter entities that contain the specified tags. | |
externalIds | null | List of strings to get specific entities by externalIds. | |
ids | null | List of strings to get specific entities by ids. | |
fields | null | List of strings to filter response JSON keys. |
RESPONSES
status: OK
{"cursor":null,"transactions":[{"description":"Paying other debts","tags":["debts","other"],"senderId":4888651368497152,"id":"5471531668865024","fee":0,"created":"2020-08-31T16:10:19.163071+00:00","receiverId":6341320293482496,"source":"self","amount":-20000,"externalId":"external_id2","balance":171966},{"description":"Paying my debts","tags":["debts"],"senderId":4888651368497152,"id":"6034481622286336","fee":0,"created":"2020-08-31T16:10:19.163070+00:00","receiverId":6341320293482496,"source":"self","amount":-10000,"externalId":"external_id1","balance":191966}]}