---
title: "Get list of custom field values"
method: GET
path: "/v3/spend/custom-fields/{customFieldId}/values"
tags: ["custom-fields"]
---

# Get list of custom field values

`GET /v3/spend/custom-fields/{customFieldId}/values`

Get a list of custom field value objects. By default, you get 20 results on one page of results. Set `max` in your request to get up to 100 results on one page.

## Path parameters

- `customFieldId` string, required — BILL-generated ID or UUID of the custom field

## Query parameters

- `max` integer, nullable — Maximum number of results
- `nextPage` string, nullable — Next page of results. When a list has multiple pages, the `nextPage` and `prevPage` values in the response enable you to navigate between the pages of results. Set this field as the `nextPage` value for navigation.
- `prevPage` string, nullable — Previous page of results. Set this field as the `prevPage` value for navigation.
- `filters` string, nullable — Field name, operator, and value. You can set multiple filters. The format is `filters={field_01}:{op}:{value},{field_02}:{op}:{value}`. Example: `filters=name:sw:Ad` The filterable fields are: - `name` - String. Operators: `eq`, `sw`. - `retired` - `true` or `false`. Operators: `eq`. The default value is `false`.

## Headers

- `apiToken` string, nullable — Access token for Spend & Expense API authentication

## Response `200`

Get list of custom field values response

- PaginatedCustomFieldValuesResponseDto — Response from a list API request with paging references.
  - `nextPage` string — Next page token
  - `prevPage` string — Previous page token
  - `results` CustomFieldValueResponseDto[] — Results
    - `id` string — BILL-generated ID of the custom field value
    - `uuid` string — BILL-generated UUID of the custom field value
    - `value` string — Custom field value
    - `deleted` boolean — Set as `true` if the custom field value is retired

## Other responses

- `4XX` — List of errors.
- `5XX` — List of errors.

---

[API](https://skmtc.net/bill/apis/bill-v3-api.md) · [All operations](https://skmtc.net/bill/apis/bill-v3-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bill/bill-v3-api/revisions/0483350c434e/schema)
