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

# List webchat widgets



## OpenAPI

````yaml /api-reference/openapi.json get /v1/webchat/widgets
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/webchat/widgets:
    get:
      tags:
        - webchat
      summary: List webchat widgets
      operationId: list_widgets_v1_webchat_widgets_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WidgetResponse'
                type: array
                title: Response List Widgets V1 Webchat Widgets Get
      security:
        - APIKeyHeader: []
components:
  schemas:
    WidgetResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        name:
          type: string
          title: Name
        is_enabled:
          type: boolean
          title: Is Enabled
        agent_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Agent Id
        team_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Team Id
        agent_revision_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Agent Revision Id
        public_key:
          type: string
          title: Public Key
        kill_epoch:
          type: integer
          title: Kill Epoch
        theme:
          additionalProperties: true
          type: object
          title: Theme
        copy:
          additionalProperties: true
          type: object
          title: Copy
        behavior:
          additionalProperties: true
          type: object
          title: Behavior
        limits:
          additionalProperties: true
          type: object
          title: Limits
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        domains:
          items:
            $ref: '#/components/schemas/DomainResponse'
          type: array
          title: Domains
      type: object
      required:
        - id
        - organization_id
        - name
        - is_enabled
        - agent_id
        - team_id
        - agent_revision_id
        - public_key
        - kill_epoch
        - theme
        - copy
        - behavior
        - limits
        - created_at
        - updated_at
      title: WidgetResponse
    DomainResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        hostname:
          type: string
          title: Hostname
        include_subdomains:
          type: boolean
          title: Include Subdomains
        verification_state:
          type: string
          title: Verification State
        verification_token:
          type: string
          title: Verification Token
        verified_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Verified At
        last_checked_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Checked At
        failure_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Reason
      type: object
      required:
        - id
        - hostname
        - include_subdomains
        - verification_state
        - verification_token
        - verified_at
        - last_checked_at
        - failure_reason
      title: DomainResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````