# List budgets linked to a custom field

Returns a paginated list of budgets that have this custom field assigned.

Endpoint: GET /v1/businesses/{client_id}/custom-fields/{custom_field_id}/budgets
Version: v1
Security: BearerAuth

## Path parameters:

  - `client_id` (integer, required)
    The ID of the business.
    Example: 123

  - `custom_field_id` (string, required)
    The ID of the custom field.
    Example: "3fa85f64-5717-4562-b3fc-2c963f66afa6"

## Query parameters:

  - `offset` (integer)
    Offset to retrieve items from.
    Example: 50

  - `limit` (integer)
    Number of items per page.
    Example: 50

## Response 200 fields (application/json):

  - `count` (integer)
    Total number of budgets linked to this custom field.
    Example: 3

  - `next` (string,null)
    Pagination cursor for the next page.
    Example: "limit=50&offset=50"

  - `previous` (string,null)
    Pagination cursor for the previous page.

  - `results` (array)

  - `results.id` (string)
    The unique identifier of the linked budget.
    Example: "3fa85f64-5717-4562-b3fc-2c963f66afa6"

  - `results.name` (string)
    The name of the linked budget.
    Example: "Marketing Q1"


## Response 401 fields

## Response 403 fields

## Response 404 fields
