# /channels

## <mark style="color:$primary;">Get all the channels availeble</mark>

<mark style="color:green;">`GET`</mark> `/channels/<iso_a2>/all`

**Headers**

| Name          | Value                   |
| ------------- | ----------------------- |
| Content-Type  | `application/json`      |
| Authorization | Bearer `<Your API key>` |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "data": [
    {
      "channel": "ARD DAS ERSTE",
      "country_en": "Austria",
      "iso_a2": "AT"
    },
    {
      "channel": "ARD Das Erste",
      "country_en": "Germany",
      "iso_a2": "DE"
    }
  ],
  "message": "Matching content found",
  "success": true
}
```

{% endtab %}

{% tab title="400" %}

```json
{
    "error":"Unauthorized"
}
```

{% endtab %}
{% endtabs %}
