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

# Get Channel

> Retrieve a single channel by its ID.




## OpenAPI

````yaml openapi/channels.yaml get /networks/channels/{channelId}
openapi: 3.0.3
info:
  title: Everflow Network API - Channels
  description: >
    Endpoints for managing channels in the Everflow network. Channels identify
    and group different types of traffic sources at the partner level — for
    example Social Media, Search, Email, or Display. They are essential for
    media buyers to track and optimize where traffic originates.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Channels
paths:
  /networks/channels/{channelId}:
    get:
      tags:
        - Channels
      summary: Get Channel
      description: |
        Retrieve a single channel by its ID.
      parameters:
        - in: path
          name: channelId
          required: true
          schema:
            type: integer
          description: The ID of the channel.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channel'
              example:
                network_channel_id: 1
                network_id: 1
                name: '321312'
                status: active
                time_created: 1774712750
                time_saved: 1774712750
                relationship: {}
      security:
        - API Key: []
components:
  schemas:
    Channel:
      type: object
      description: A traffic channel in the network.
      properties:
        network_channel_id:
          type: integer
          description: Unique channel ID.
        network_id:
          type: integer
          description: Network ID.
        name:
          type: string
          description: Channel name.
        status:
          type: string
          enum:
            - active
            - inactive
          description: Channel status.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        relationship:
          type: object
          description: Related data.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````