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

# List Channels

> Lists all channels for the workspace.



## OpenAPI

````yaml GET /channels
openapi: 3.1.0
info:
  title: Teleskop API
  version: 1.0.0
  contact:
    name: Teleskop Support
    url: https://teleskop.app/help
    email: support@teleskop.app
servers:
  - url: https://api.teleskop.dev
    description: Production
security:
  - x-api-key: []
tags: []
paths:
  /channels:
    get:
      tags:
        - Channels
      summary: List Channels
      description: Lists all channels for the workspace.
      responses:
        '200':
          description: Channels retrieved successfully
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponseDto'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/ChannelDto'
                        nullable: true
      security:
        - x-api-key: []
components:
  schemas:
    ApiResponseDto:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
          example: success
          description: Response status
        statusCode:
          type: number
          example: 200
          description: HTTP status code
        data:
          type: object
          description: Response data
          nullable: true
        message:
          type: string
          example: Request successful
          description: Response message
        metadata:
          type: object
          description: Additional metadata
          nullable: true
      required:
        - status
        - statusCode
        - data
        - message
    ChannelDto:
      type: object
      properties:
        name:
          type: string
          example: news
          description: Name of the channel
        category:
          type: string
          example: news
          description: Category of the channel
        title:
          type: object
          example:
            en: News
            tr: Haber
          description: Translated title of the channel
        is_accessible:
          type: boolean
          example: true
          description: ''
      required:
        - name
        - category
        - title
        - is_accessible
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````