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

# Get Available Channels

> Returns the list of messaging channels that are configured and available
for the current account. Only channels with verified integrations are returned.
Requires `campaigns:view` permission.




## OpenAPI

````yaml GET /api/campaigns/channels
openapi: 3.1.0
info:
  title: Naturalead Campaigns API
  version: 1.0.0
  description: >
    API for managing outreach campaigns in the Naturalead platform. Campaigns

    orchestrate batch AI-driven conversations with leads across messaging
    channels.

    All endpoints require API key authentication and are scoped

    to the caller's account.
servers:
  - url: '{baseUrl}'
    description: API server
    variables:
      baseUrl:
        default: http://localhost:3001
security:
  - ApiKeyAuth: []
  - BearerAuth: []
tags:
  - name: Campaigns
    description: Campaign CRUD, launch, pause, and channel discovery
paths:
  /api/campaigns/channels:
    get:
      tags:
        - Campaigns
      summary: Get available channels
      description: >
        Returns the list of messaging channels that are configured and available

        for the current account. Only channels with verified integrations are
        returned.

        Requires `campaigns:view` permission.
      operationId: getAvailableChannels
      responses:
        '200':
          description: List of available channel names
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                  enum:
                    - whatsapp
                    - telegram
                    - email
              example:
                - whatsapp
                - email
        '500':
          $ref: '#/components/responses/InternalError'
components:
  responses:
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Failed to process request
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        API key for programmatic access. Keys use the format `nl_live_<64 hex>`
        or `nl_test_<64 hex>` and are scoped to an account's RBAC permissions.
    BearerAuth:
      type: http
      scheme: bearer
      description: |
        Bearer token using an API key (format: nl_live_* or nl_test_*).

````