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

# List filter sets

> List measurement-report filter sets for a ground-truth component.



## OpenAPI

````yaml /api-reference/bundled.yaml get /v0/components/{componentId}/filter-sets
openapi: 3.1.0
info:
  title: Gable API
  description: >
    API to interact with the Gable platform

    ## Authorization

    All API requests require an API key to be passed in the `X-API-KEY` header.
    For instructions on finding your API key and api endpoint check out the [API
    Key documentation](../docs/api-keys.md).

    Example: `curl -H "X-API-KEY: <your-api-key>"
    https://api-{organization}.gable.ai/v0/ping`
  contact:
    name: Gable Engineering
    url: https://gable.ai
    email: engineers@gable.ai
  version: 1.28.0
servers:
  - url: https://{hostname}.gable.ai
    description: Gable API
    variables:
      hostname:
        default: demo-api
        description: Customer environment assigned by Gable
security:
  - ApiKeyAuth: []
tags:
  - name: action
  - name: api-keys
  - name: auth
  - name: changelog
  - name: config
  - name: contract
  - name: data-asset
  - name: debug
  - name: s3
  - name: settings
  - name: slack
  - name: sso
  - name: webhook
  - name: notifications
  - name: constraints
  - name: telemetry
  - name: component
  - name: components
  - name: sca
  - name: cross-service-components
  - name: lineage
  - name: events
  - name: measurements
  - name: defect-report
  - name: experimental
paths:
  /v0/components/{componentId}/filter-sets:
    get:
      tags:
        - measurements
      summary: List filter sets
      description: List measurement-report filter sets for a ground-truth component.
      operationId: listFilterSets
      parameters:
        - in: path
          name: componentId
          schema:
            type: string
            format: uuid
          required: true
          description: UUID of the ground-truth component.
      responses:
        '200':
          description: Filter sets for the component
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetFilterSetsResponse'
components:
  schemas:
    GetFilterSetsResponse:
      type: object
      description: List of measurement-report filter sets for a ground-truth component.
      required:
        - filterSets
      properties:
        filterSets:
          type: array
          items:
            $ref: '#/components/schemas/FilterSet'
    FilterSet:
      type: object
      description: >-
        A named, reusable set of ground-truth payloads used to scope a
        measurement report. Associated with a ground-truth component
        (version-independent).
      required:
        - id
        - componentId
        - name
        - payloads
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the filter set.
        componentId:
          type: string
          format: uuid
          description: Ground-truth component this filter set is associated with.
        name:
          type: string
          description: Human-readable name for the filter set.
        payloads:
          type: array
          description: Payloads included when this filter set is applied.
          items:
            $ref: '#/components/schemas/FilterSetPayload'
        createdBy:
          type: string
          description: Email of the user who created the filter set.
        createdAt:
          type: string
          description: ISO timestamp when the filter set was created.
        updatedAt:
          type: string
          description: ISO timestamp when the filter set was last updated.
    FilterSetPayload:
      type: object
      description: >-
        A single ground-truth payload included in a measurement-report filter
        set.
      required:
        - payloadName
      properties:
        payloadName:
          type: string
          description: Name of the ground-truth payload to include in the report.
        note:
          type: string
          description: Optional free-text note describing why this payload is included.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````