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

> List values for a given filter

# List



## OpenAPI

````yaml GET /filters/{name}
openapi: 3.1.0
info:
  title: The Neighborhood - OpenAPI
  description: Schema for testing, deploying, and managing distributed pipelines
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.indexing.co/dw
security:
  - ApiKeyAuth: []
paths:
  /filters/{name}:
    get:
      description: >-
        Returns all values for a given filter, sorted by when they were added
        (oldest first)
      parameters:
        - name: name
          in: path
          description: The name of the filter
          required: true
          schema:
            type: string
        - name: pageToken
          in: query
          description: Optional pagination token for results
          schema:
            type: string
        - name: prefix
          in: query
          description: Optional value prefix for results
          example: '0x123'
          schema:
            type: string
        - name: includeTimestamps
          in: query
          description: >-
            Optionally include a timestamp for when the filter was added. NOTE:
            this will change the output format as well
          example: 'true'
          schema:
            type: boolean
      responses:
        '200':
          description: List of values
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: string
                  metadata:
                    type: object
                    properties:
                      nextPageToken:
                        type: string
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                required:
                  - error
                type: object
                properties:
                  error:
                    type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````