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

# List Channels



## OpenAPI

````yaml get /v1/channels
openapi: 3.1.0
info:
  version: 1.0.0
  title: every public api
servers:
  - url: https://api.goevery.co
security:
  - bearerAuth: []
paths:
  /v1/channels:
    get:
      parameters:
        - schema:
            type:
              - number
              - 'null'
            exclusiveMinimum: 0
            maximum: 100
            example: 50
          required: false
          name: pageSize
          in: query
          description: >-
            The maximum number of channels to return. Defaults to 50 if not
            specified.
        - schema:
            type:
              - string
              - 'null'
          required: false
          name: pageToken
          in: query
          description: A token to retrieve the next page of results.
      responses:
        '200':
          description: Successfully retrieved list of channels.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListChannelsResponse'
components:
  schemas:
    ListChannelsResponse:
      type: object
      properties:
        channels:
          type: array
          items:
            $ref: '#/components/schemas/Channel'
          description: An array of channels.
        nextPageToken:
          type:
            - string
            - 'null'
          description: A token to retrieve the next page of results, if any.
      required:
        - channels
    Channel:
      type: object
      properties:
        name:
          type: string
          description: The resource name of the channel.
          example: channels/6633a1b2c4d5e6f7a8b9c0d1
        type:
          type: string
          description: The channel type.
          example: whatsapp
        active:
          type: boolean
          description: Whether the channel is active.
          example: true
        whatsApp:
          type: object
          properties:
            phoneNumber:
              type: string
              description: The display phone number.
              example: '+573001234567'
          required:
            - phoneNumber
          description: WhatsApp-specific channel configuration.
      required:
        - name
        - type
        - active
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````