curl --request GET \
--url https://api.example.com/api/v1/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"transactions": [
{
"type": "<string>",
"name": "<string>",
"time": "2023-11-07T05:31:56Z",
"status": "pending",
"isIncome": true,
"from": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onchainTransactionId": "<string>",
"txHash": "<string>",
"tag": "<string>",
"spendLineId": "<string>",
"to": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"fee": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"destinationChainId": "<string>",
"usdBalanceAfter": 123,
"card": {
"name": "<string>",
"label": "<string>",
"merchant": "<string>",
"merchantIcon": "<string>",
"category": "<string>"
},
"invoice": {
"invoiceNumber": "<string>",
"periodStart": "2023-12-25",
"periodEnd": "2023-12-25"
},
"userFrom": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"address": "<string>"
},
"userTo": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"address": "<string>"
},
"walletFrom": {
"address": "<string>",
"chainId": "<string>"
},
"walletTo": {
"address": "<string>",
"chainId": "<string>"
},
"ibanFrom": {
"bankName": "<string>",
"accountHolderType": "individual",
"beneficiaryName": "<string>",
"bankAddress": {
"addressLine1": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>"
},
"currency": "<string>",
"accountHolderFirstName": "<string>",
"accountHolderLastName": "<string>",
"accountHolderBusinessName": "<string>",
"accountHolderAddress": {
"streetAddress": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "AF",
"zip": "<string>"
},
"relationship": "employee",
"businessIndustry": "<string>",
"paymentReference": "<string>",
"accountType": "sepa",
"ibanNumber": "<string>",
"bic": "<string>"
},
"ibanTo": {
"bankName": "<string>",
"accountHolderType": "individual",
"beneficiaryName": "<string>",
"bankAddress": {
"addressLine1": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>"
},
"currency": "<string>",
"accountHolderFirstName": "<string>",
"accountHolderLastName": "<string>",
"accountHolderBusinessName": "<string>",
"accountHolderAddress": {
"streetAddress": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "AF",
"zip": "<string>"
},
"relationship": "employee",
"businessIndustry": "<string>",
"paymentReference": "<string>",
"accountType": "sepa",
"ibanNumber": "<string>",
"bic": "<string>"
},
"approved": "<string>",
"remitter": "<string>",
"paymentReference": "<string>",
"traceNumber": "<string>",
"hasAttachments": false
}
],
"summary": {
"inflowUsd": 123,
"inflowCount": 123,
"outflowUsd": 123,
"outflowCount": 123,
"pendingInflowUsd": 123,
"pendingInflowCount": 123,
"pendingOutflowUsd": 123,
"pendingOutflowCount": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Get user transactions
Get latest user transactions sorted by time.
curl --request GET \
--url https://api.example.com/api/v1/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"transactions": [
{
"type": "<string>",
"name": "<string>",
"time": "2023-11-07T05:31:56Z",
"status": "pending",
"isIncome": true,
"from": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onchainTransactionId": "<string>",
"txHash": "<string>",
"tag": "<string>",
"spendLineId": "<string>",
"to": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"fee": {
"currency": "<string>",
"amount": 123,
"usdRate": 123,
"source": "<string>"
},
"destinationChainId": "<string>",
"usdBalanceAfter": 123,
"card": {
"name": "<string>",
"label": "<string>",
"merchant": "<string>",
"merchantIcon": "<string>",
"category": "<string>"
},
"invoice": {
"invoiceNumber": "<string>",
"periodStart": "2023-12-25",
"periodEnd": "2023-12-25"
},
"userFrom": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"address": "<string>"
},
"userTo": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"name": "<string>",
"avatarUrl": "<string>",
"address": "<string>"
},
"walletFrom": {
"address": "<string>",
"chainId": "<string>"
},
"walletTo": {
"address": "<string>",
"chainId": "<string>"
},
"ibanFrom": {
"bankName": "<string>",
"accountHolderType": "individual",
"beneficiaryName": "<string>",
"bankAddress": {
"addressLine1": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>"
},
"currency": "<string>",
"accountHolderFirstName": "<string>",
"accountHolderLastName": "<string>",
"accountHolderBusinessName": "<string>",
"accountHolderAddress": {
"streetAddress": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "AF",
"zip": "<string>"
},
"relationship": "employee",
"businessIndustry": "<string>",
"paymentReference": "<string>",
"accountType": "sepa",
"ibanNumber": "<string>",
"bic": "<string>"
},
"ibanTo": {
"bankName": "<string>",
"accountHolderType": "individual",
"beneficiaryName": "<string>",
"bankAddress": {
"addressLine1": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>"
},
"currency": "<string>",
"accountHolderFirstName": "<string>",
"accountHolderLastName": "<string>",
"accountHolderBusinessName": "<string>",
"accountHolderAddress": {
"streetAddress": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "AF",
"zip": "<string>"
},
"relationship": "employee",
"businessIndustry": "<string>",
"paymentReference": "<string>",
"accountType": "sepa",
"ibanNumber": "<string>",
"bic": "<string>"
},
"approved": "<string>",
"remitter": "<string>",
"paymentReference": "<string>",
"traceNumber": "<string>",
"hasAttachments": false
}
],
"summary": {
"inflowUsd": 123,
"inflowCount": 123,
"outflowUsd": 123,
"outflowCount": 123,
"pendingInflowUsd": 123,
"pendingInflowCount": 123,
"pendingOutflowUsd": 123,
"pendingOutflowCount": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Query Parameters
1 <= x <= 200x >= 0Field to sort the transaction list by.
date, amount Sort direction.
asc, desc Comma-separated transaction types
Comma-separated tags
Comma-separated unified statuses
Comma-separated contact UUIDs
Comma-separated bank account UUIDs
Comma-separated bank account UUIDs
Comma-separated Card UUIDs
Reporting-date cutoff (YYYY-MM-DD). Caps results at the end of that day; ignored when toDate is set.
True → only transactions linked to an invoice; False → only those without one; omitted → no filter.
Free-text search across description, merchant, tag, hash/wallet, contact name, counterparty user, invoice contractor, IBAN, and exact amount. Min 2 chars; values shorter are ignored.
Response
Successful Response
Unified transaction list response.
Show child attributes
Show child attributes
Aggregate volumes and counts over the filtered transaction set.
Computed without LIMIT/OFFSET — represents the entire filtered scope, not just the current page. Returned only on the first page (offset=0); subsequent pages omit it since it doesn't change with pagination.
Show child attributes
Show child attributes
Was this page helpful?