# /markets

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

<mark style="color:green;">`GET`</mark> `/countries`

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Response**

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

```json
{
  "data": [
    {
      "country_en": "Germany",
      "iso_a2": "DE"
    },
    {
      "country_en": "USA",
      "iso_a2": "US"
    }
  ],
  "message": "Matching content found",
  "success": true
}

```

{% endtab %}

{% tab title="400" %}

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

{% endtab %}
{% endtabs %}
