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

# List Channels

> Metadata for every registered deployment channel (respects kill switch).



## OpenAPI

````yaml get /v1/channels
openapi: 3.1.0
info:
  title: Noxus Backend
  description: >-
    Backend API for the Noxus Platform. More information can be found at
    https://docs.noxus.ai
  version: 1.1.0
servers: []
security: []
paths:
  /v1/channels:
    get:
      tags:
        - V1 - Deployments
      summary: List Channels
      description: Metadata for every registered deployment channel (respects kill switch).
      operationId: list_channels
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ChannelMetadata'
                type: array
                title: Response List Channels
      security:
        - APIKeyHeader: []
components:
  schemas:
    ChannelMetadata:
      properties:
        channel_type:
          type: string
          title: Channel Type
        label:
          type: string
          title: Label
        description:
          type: string
          title: Description
        icon_url:
          type: string
          title: Icon Url
        preview_image_url:
          type: string
          title: Preview Image Url
        color:
          type: string
          title: Color
        required_integration:
          anyOf:
            - type: string
            - type: 'null'
          title: Required Integration
        order:
          type: integer
          title: Order
        supports_app_url:
          type: boolean
          title: Supports App Url
        supports_embed:
          type: boolean
          title: Supports Embed
        supports_transport_display:
          type: boolean
          title: Supports Transport Display
        supports_customization:
          type: boolean
          title: Supports Customization
        is_external:
          type: boolean
          title: Is External
      type: object
      required:
        - channel_type
        - label
        - description
        - icon_url
        - preview_image_url
        - color
        - required_integration
        - order
        - supports_app_url
        - supports_embed
        - supports_transport_display
        - supports_customization
        - is_external
      title: ChannelMetadata
      description: |-
        Public metadata for a registered deployment channel.

        Mirrors ``ChannelDefinition.to_metadata()`` — typed so the OpenAPI
        spec is precise and the frontend generated types are useful.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````