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

# Get all channels.

> Get all channels.



## OpenAPI

````yaml get /channels
openapi: 3.0.0
info:
  title: AASAAN REST API
  version: 1.0.0
  description: >-
    REST API endpoints are organized by resource type. You’ll need to use
    different endpoints depending on your app’s requirements.
servers:
  - url: https://api.aasaan.shop/api/v1/stores
    description: Development server
security: []
tags: []
paths:
  /channels:
    get:
      tags:
        - Channel
      summary: Get all channels.
      description: Get all channels.
      responses:
        '201':
          description: A list of all channels.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channel'
        '403':
          description: Invalid Api Key
        '422':
          description: Data error
        '500':
          description: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  schemas:
    Channel:
      properties:
        id:
          type: string
          description: The Channel Object ID.
          example: 623d3455ec3c4b3548eb4a349
        default:
          type: boolean
          description: Default indicator.
          example: true
        active:
          type: boolean
          description: Active indicator.
          example: true
        name:
          type: string
          description: Name of the channel.
          example: US
        currency:
          type: string
          description: Channel currency.
          example: USD
        country:
          type: string
          description: Channel country.
          example: US
        slug:
          type: string
          description: Channel slug which appears in the website url.
          example: us
        currencySymbol:
          type: string
          description: Symbol of the channel currency.
          example: $
        date_created:
          type: string
          description: Created date
          example: '2022-03-25T03:17:44.092Z'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````