# Countries

## Get countries

<mark style="color:blue;">`GET`</mark> `https://integrations.mipos.shop/api/v1/countries`

Provides a list of countries registered in the platform to be used in the subsequent endpoints

#### Headers

| Name          | Type   | Description            |
| ------------- | ------ | ---------------------- |
| Authorization | string | Bearer {access\_token} |

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

```javascript
[
    {
        "name": "Andorra",
        "short_name": "AD"
    },
    {
        "name": "United Arab Emirates",
        "short_name": "AE"
    }
]
```

{% endtab %}

{% tab title="401 " %}

```
"Unauthorized."
```

{% endtab %}
{% endtabs %}
