API Reference / Finance - Budgets

Get budget detail

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

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

Returns budget with all items

Example request

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

Path parameters

NameTypeRequiredDescription
budgetId integer (int64) yes

Response 200

application/json · ApiResponseBudgetDetailResponseDto

FieldTypeDescription
success boolean
message string
data BudgetDetailResponseDto Detailed budget view including metadata and all line items

Status codes

  • 200 — Budget detail 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.