> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# List filter values

> Returns a paginated list of values in a set filter transform.

Returns a paginated list of values in the filter. Changes to filter values take effect immediately — no redeploy needed.

<Note>
  **Required permission:** `read` — owners, editors, readers, and members of teams shared via `viewer_team`.
</Note>

**Path parameters:**

| Parameter       | Description                     |
| :-------------- | :------------------------------ |
| `config_id`     | Pipeline configuration ID       |
| `transform_uid` | UID of the set filter transform |

**Query parameters:**

| Parameter | Default | Description                                |
| :-------- | :------ | :----------------------------------------- |
| `cursor`  | `null`  | Pagination cursor from a previous response |
| `count`   | `100`   | Number of values per page (1-10,000)       |

```bash theme={null}
curl -X GET "https://api.allium.so/api/v1/beam/${CONFIG_ID}/transforms/${TRANSFORM_UID}/filter-values?count=100" \
  -H "X-API-Key: ${ALLIUM_API_KEY}"
```

**Response:**

```json theme={null}
{
  "values": ["0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", "0xc2132d05d31c914a87c6611c10748aeb04b58e8f"],
  "cursor": 42,
  "total_count": 1500
}
```

| Field         | Description                                       |
| :------------ | :------------------------------------------------ |
| `values`      | Array of values in the current page               |
| `cursor`      | Cursor for the next page, `null` if no more pages |
| `total_count` | Total number of values in the filter              |


## OpenAPI

````yaml _openapi/beam-api.json GET /api/v1/beam/{config_id}/transforms/{transform_uid}/filter-values
openapi: 3.1.0
info:
  title: Allium Beam API
  description: Allium Beam — managed streaming pipelines on top of Allium Datastreams.
  version: 1.0.0
servers:
  - url: https://api.allium.so
security: []
paths:
  /api/v1/beam/{config_id}/transforms/{transform_uid}/filter-values:
    get:
      tags:
        - BEAM
      summary: List Filter Values Handler
      operationId: >-
        list_filter_values_handler_api_v1_beam__config_id__transforms__transform_uid__filter_values_get
      parameters:
        - name: config_id
          in: path
          required: true
          schema:
            type: string
            title: Config Id
        - name: transform_uid
          in: path
          required: true
          schema:
            type: string
            title: Transform Uid
        - name: cursor
          in: query
          required: false
          schema:
            title: Cursor
            type: integer
        - name: count
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000000
            minimum: 1
            default: 100
            title: Count
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilterValuesListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyBearer: []
components:
  schemas:
    FilterValuesListResponse:
      properties:
        values:
          items:
            type: string
          type: array
          title: Values
        cursor:
          anyOf:
            - type: integer
            - type: 'null'
          title: Cursor
        total_count:
          type: integer
          title: Total Count
      type: object
      required:
        - values
        - total_count
      title: FilterValuesListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyBearer:
      type: apiKey
      in: header
      name: X-API-KEY

````