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

KeyDatatypeRequiredDescription
cursornullString used to get the next batch of results.
limitnullNumber of results per cursor. Max = 100.
afternullFilter entities created after this date.
beforenullFilter entities created before this date.
tagsnullFilter entities that contain the specified tags.
externalIdsnullList of strings to get specific entities by externalIds.
idsnullList of strings to get specific entities by ids.
fieldsnullList 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}]}