Skip to content

Spending by category (?month= widget, or ?preset/start/end range)

GET
/reports/spending-by-category
curl --request GET \
--url 'https://api.tovarifinancial.com/reports/spending-by-category?month=2026-07&preset=this_month&start=2026-07&end=2026-07&shape=compact&include=kpis' \
--header 'Authorization: Bearer <token>'
month

Month, ‘YYYY-MM’

string
Example
2026-07

Widget mode: month ‘YYYY-MM’

preset
string
Allowed values: this_month last_month last_3_months last_6_months ytd last_year

Range preset (mutually exclusive with start/end)

start

Month, ‘YYYY-MM’

string
Example
2026-07

Range start month ‘YYYY-MM’

end

Month, ‘YYYY-MM’

string
Example
2026-07

Range end month ‘YYYY-MM’

shape
string
Allowed values: compact

Opt into the compact widget shape. Omit for the legacy ?month= widget or the preset/start/end range shape. Any value other than the one listed is rejected with 400.

include
string
Allowed values: kpis

Opt-in extra blocks on the compact response. Only supported with shape=compact; an unknown value, or this parameter on the legacy/range paths, is rejected with 400.

accountIds
string

Comma-separated account UUIDs to scope the report to. Omit for all accounts. A malformed value is rejected with 400 — it is never dropped to an unfiltered report.

budgetOnly
string

Set to ‘1’ or ‘true’ to restrict the expense side to budgeted expense categories. Never applied to income. Any other value is treated as false. Not accepted together with shape=compact — that combination is a 400, never a silently ignored filter.

Spending-by-category (widget or range shape)

Media typeapplication/json
object
data
required
object
categories
Array<object>
object
categoryId
string format: uuid
name
string
colorId

System_lookups id in the budget_color set; resolve via GET /lookups.

string
nullable
iconId

System_lookups id in the budget_icon set; resolve via GET /lookups. Non-null when present — budget_categories.icon_id is NOT NULL and the statement inner-joins the category.

string
spentCents

SIGNED net outflow (KAN-697): negative when the category took in more than it paid out.

integer format: int64
sharePct

Server-computed 0-1 donut share. Denominator is the sum of max(0, spentCents) over ALL rows in the window (the named rows AND the rolled-up ‘others’ tail). Null when the row cannot own a share: a net-inflow row (spend is SIGNED since KAN-697) or a non-positive denominator. Clients must render the server value and never re-derive it.

number
nullable
key
additional properties
any
others

The rolled-up tail beyond the top 8. Carries NO category id/name/colour/icon — attributing one tenant category to an N-category rollup would misstate the data.

object
count
integer
spentCents

Integer minor units (cents)

integer format: int64
sharePct

Server-computed 0-1 donut share. Denominator is the sum of max(0, spentCents) over ALL rows in the window (the named rows AND the rolled-up ‘others’ tail). Null when the row cannot own a share: a net-inflow row (spend is SIGNED since KAN-697) or a non-positive denominator. Clients must render the server value and never re-derive it.

number
nullable
key
additional properties
any
key
additional properties
any
message
string
requestId
required
string
timestamp
required
string format: date-time
Examplegenerated
{
"data": {
"categories": [
{
"categoryId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"colorId": "example",
"iconId": "example",
"spentCents": 1,
"sharePct": 1
}
],
"others": {
"count": 1,
"spentCents": 1,
"sharePct": 1
}
},
"message": "example",
"requestId": "example",
"timestamp": "2026-04-15T12:00:00Z"
}

Validation failed — see errorCode / fieldErrors

Media typeapplication/json
object
errorCode
required

Machine-readable error code (AUTH_ERROR_CODES).

string
Allowed values: INVALID_EMAIL_FORMAT USER_ALREADY_EXISTS ORG_NAME_TAKEN INVALID_INVITE_CODE WRONG_PASSWORD USER_NOT_FOUND AUTHENTICATION_FAILED EXPIRED_CODE INVALID_CODE INVALID_PASSWORD VALIDATION_ERROR SIGNUP_FAILED DATABASE_ERROR SERVICE_UNAVAILABLE PLAID_ERROR IDEMPOTENCY_CONFLICT ACCOUNT_ALREADY_LINKED NOT_FOUND
message
required
string
fieldErrors

Optional field-level validation errors, keyed by field name.

object
key
additional properties
Array<string>
requestId
required
string
timestamp
required
string format: date-time
Example
{
"errorCode": "INVALID_EMAIL_FORMAT"
}

Missing, invalid, or expired bearer token

Media typeapplication/json
object
errorCode
required

Machine-readable error code (AUTH_ERROR_CODES).

string
Allowed values: INVALID_EMAIL_FORMAT USER_ALREADY_EXISTS ORG_NAME_TAKEN INVALID_INVITE_CODE WRONG_PASSWORD USER_NOT_FOUND AUTHENTICATION_FAILED EXPIRED_CODE INVALID_CODE INVALID_PASSWORD VALIDATION_ERROR SIGNUP_FAILED DATABASE_ERROR SERVICE_UNAVAILABLE PLAID_ERROR IDEMPOTENCY_CONFLICT ACCOUNT_ALREADY_LINKED NOT_FOUND
message
required
string
fieldErrors

Optional field-level validation errors, keyed by field name.

object
key
additional properties
Array<string>
requestId
required
string
timestamp
required
string format: date-time
Example
{
"errorCode": "INVALID_EMAIL_FORMAT"
}

Authenticated, but the tenant gate refuses the request until the caller resolves a precondition. errorCode is one of EMAIL_NOT_VERIFIED, POLICY_ACCEPTANCE_REQUIRED, or SUBSCRIPTION_REQUIRED, evaluated in exactly that order (contract term CCR-1: email verification first, then policy acceptance, then subscription — so a subscriber who has merely not re-accepted the current policies always sees POLICY_ACCEPTANCE_REQUIRED). A POLICY_ACCEPTANCE_REQUIRED body additionally carries details.outstanding (the policy versions still to accept) and details.firstAcceptance. The SUBSCRIPTION_REQUIRED arm is INERT unless the server-side BILLING_ENABLED flag is exactly the string true; while it is off, only the first two codes are reachable. Not retryable as sent — resolve the named condition, then resend.

Media typeapplication/json
object
errorCode
required

Which precondition refused the request. Evaluated in this order (CCR-1); SUBSCRIPTION_REQUIRED is unreachable while BILLING_ENABLED is not exactly true.

string
Allowed values: EMAIL_NOT_VERIFIED POLICY_ACCEPTANCE_REQUIRED SUBSCRIPTION_REQUIRED
message
required
string
details
object
outstanding
required

Active policy versions the user has not yet accepted.

Array<object>
object
id
required
string format: uuid
policyType
required
string
version
required
integer
title
required
string
firstAcceptance
required

True when the user has accepted no policy before — the client renders the new-signup screen rather than the re-acceptance one.

boolean
requestId
required
string
timestamp
required
string format: date-time
Example
{
"errorCode": "EMAIL_NOT_VERIFIED"
}

Internal error (no internal detail leaked)

Media typeapplication/json
object
errorCode
required

Machine-readable error code (AUTH_ERROR_CODES).

string
Allowed values: INVALID_EMAIL_FORMAT USER_ALREADY_EXISTS ORG_NAME_TAKEN INVALID_INVITE_CODE WRONG_PASSWORD USER_NOT_FOUND AUTHENTICATION_FAILED EXPIRED_CODE INVALID_CODE INVALID_PASSWORD VALIDATION_ERROR SIGNUP_FAILED DATABASE_ERROR SERVICE_UNAVAILABLE PLAID_ERROR IDEMPOTENCY_CONFLICT ACCOUNT_ALREADY_LINKED NOT_FOUND
message
required
string
fieldErrors

Optional field-level validation errors, keyed by field name.

object
key
additional properties
Array<string>
requestId
required
string
timestamp
required
string format: date-time
Example
{
"errorCode": "INVALID_EMAIL_FORMAT"
}

Service temporarily unavailable — errorCode is SERVICE_UNAVAILABLE. A TRANSIENT, RETRYABLE condition rather than a defect in the request: a query that exceeded its time budget, a lost or refused database connection, a saturated connection pool, or an outage at an upstream provider the request depends on (the authentication provider, or the bank data provider on a bank-connection operation). The identical request may succeed on retry — back off briefly and, on a write, resend the same X-Idempotency-Key where the operation accepts one.

Media typeapplication/json
object
errorCode
required

Machine-readable error code (AUTH_ERROR_CODES).

string
Allowed values: INVALID_EMAIL_FORMAT USER_ALREADY_EXISTS ORG_NAME_TAKEN INVALID_INVITE_CODE WRONG_PASSWORD USER_NOT_FOUND AUTHENTICATION_FAILED EXPIRED_CODE INVALID_CODE INVALID_PASSWORD VALIDATION_ERROR SIGNUP_FAILED DATABASE_ERROR SERVICE_UNAVAILABLE PLAID_ERROR IDEMPOTENCY_CONFLICT ACCOUNT_ALREADY_LINKED NOT_FOUND
message
required
string
fieldErrors

Optional field-level validation errors, keyed by field name.

object
key
additional properties
Array<string>
requestId
required
string
timestamp
required
string format: date-time
Example
{
"errorCode": "INVALID_EMAIL_FORMAT"
}