API Reference / Finance - Budget Items

Get budget totals

get https://api.intelig.ai/api/v1/intelig/budgets/{budgetId}/items/totals

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getTotals

Returns aggregated totals for a budget

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/budgets/1/items/totals" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
budgetId integer (int64) yes

Response 200

application/json · ApiResponseBudgetTotalsDto

FieldTypeDescription
success boolean
message string
data BudgetTotalsDto Aggregated budget cost totals

Status codes

  • 200 — Budget totals retrieved successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access finance pillar
  • 404 — Budget not found
  • 429 — —

Every response is wrapped in { success, message, data }. A 4xx means the request is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.