---
title: "List Budgets"
method: GET
path: "/coa/api/budgets"
tags: ["Core Accounting"]
---

# List Budgets

`GET /coa/api/budgets`

Retrieve a list of budgets with optional filtering and sorting.

        Supports including soft-deleted records for audit and recovery purposes.
        When include_deleted=true, returns ONLY deleted records instead of active records.
        Deleted records contain minimal data: 'id', 'is_deleted=true', 'deleted_at' timestamp,
        and 'last_modified_at'. When 'false' or omitted, returns ONLY active records.
        This provides clean separation between active and deleted data.

## Query parameters

- `entity` integer
- `entity_name` string
- `include_deleted` boolean
- `last_modified_at__gte` string
- `last_modified_at__lte` string
- `limit` integer
- `offset` integer
- `q` string
- `sort` string

## Response `200`

- PaginatedBudgetList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` Budget[], required
    - `id` integer, required
    - `entity_name` string, required
    - `prior_start_date` string, required
    - `prior_end_date` string, required
    - `department_name` string, required
    - `tags` object[], required
    - `is_deleted` boolean, required
    - `deleted_at` string, date-time, nullable, required
    - `name` string, required
    - `description` string, nullable
    - `cadence` string, nullable
    - `start_date` string, date, required
    - `end_date` string, date, nullable
    - `periods` integer
    - `breakdown_type` 'standard' | 'department_row' — * `standard` - Standard (Account-based) * `department_row` - Department (Row)
    - `tag_ids` integer[]
    - `tag_group_ids` integer[]
    - `currency` string
    - `created_at` string, date-time, required
    - `last_modified_at` string, date-time, required
    - `customer` integer, required
    - `entity` integer, nullable
    - `department` integer, nullable

---

[API](https://skmtc.net/campfire/apis/campfire-developer-apis.md) · [All operations](https://skmtc.net/campfire/apis/campfire-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/campfire/campfire-developer-apis/versions/6945ebc3180e/schema)
