> ## 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 components.

> List components with optional search and type filtering.



## OpenAPI

````yaml /api-reference/bundled.yaml get /v0/experimental/components
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/experimental/components:
    get:
      tags:
        - experimental
      summary: List components.
      description: List components with optional search and type filtering.
      operationId: getExperimentalComponents
      parameters:
        - in: query
          name: search
          required: false
          schema:
            type: string
          description: Search components by name (case-insensitive prefix match).
        - in: query
          name: type
          required: false
          schema:
            type: string
          description: Filter by component type (e.g. "repo", "data_store").
        - in: query
          name: namespace
          required: false
          schema:
            type: string
          description: Filter by namespace.
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComponentListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ComponentListResponse:
      type: object
      description: Response containing a list of component summaries.
      properties:
        components:
          type: array
          items:
            $ref: '#/components/schemas/ComponentSummaryResource'
      required:
        - components
    ErrorResponse:
      type: object
      required:
        - message
      properties:
        id:
          type: number
        title:
          type: string
        message:
          type: string
    ComponentSummaryResource:
      type: object
      description: Lightweight component summary for listing.
      properties:
        id:
          type: string
          format: uuid
          description: Component UUID.
        name:
          type: string
          description: Human-readable component name.
        type:
          type: string
          description: Component type (e.g. "service", "database", "table", "data_store").
        namespace:
          type: string
          description: The namespace this component belongs to.
        last_updated:
          type: string
          description: ISO timestamp of last update.
        friendly_name:
          type: string
          description: Optional friendly display name.
        metrics:
          type: object
          properties:
            ingress_count:
              type: integer
            egress_count:
              type: integer
            path_count:
              type: integer
        repo_name:
          type: string
          description: Repository name (for code components).
      required:
        - id
        - name
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````