API Reference / Finance - Budgets

Create budget

post https://api.intelig.ai/api/v1/intelig/budgets

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

Creates a new budget in DRAFT status

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/budgets" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Q1 2026 Engineering Budget",
    "description": "Engineering team headcount budget for Q1"
  }'

Request body

application/json

FieldTypeRequiredDescription
name string yes Budget name Example: Q1 2026 Engineering Budget
description string no Budget description Example: Engineering team headcount budget for Q1

Response 200

application/json · ApiResponseLong

FieldTypeDescription
success boolean
message string
data integer (int64)

Status codes

  • 200 — Budget created successfully
  • 400 — Invalid request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access finance pillar
  • 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.