curl --request GET \
--url https://api.example.com/api/v1/transactions/breakdown \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions/breakdown"
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/breakdown', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"groupBy": "tag",
"items": [
{
"key": "<string>",
"volumeUsd": 123,
"count": 123
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Transaction volume breakdown
Volume + count grouped by tag or type, with the same filters as the list.
curl --request GET \
--url https://api.example.com/api/v1/transactions/breakdown \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions/breakdown"
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/breakdown', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"groupBy": "tag",
"items": [
{
"key": "<string>",
"volumeUsd": 123,
"count": 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
Group by tag or type
tag, type 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.
Was this page helpful?