---
title: "Get a list of countries"
method: GET
path: "/countries"
tags: ["Dictionaries"]
---

# Get a list of countries

`GET /countries`

## Headers

- `Accept` string, required
- `Content-Type` string, required
- `Authorization` string, required

## Response `200`

OK

- CountriesResponseDataTypes — Get a list of countries
  - `success` boolean — Execution success status (true)
  - `data` object[] — Array of objects with data
    - `id` number — Country ID
    - `title` string — Short country name
    - `full_title` string — Full country name
    - `iso_code` string — ISO 3166-1 alpha-2 country code
    - `phone_code` string — Country phone code
    - `phone_template` string — Country phone number mask
    - `phone_example` string — Country phone number example
    - `currency` string — Country currency symbol
    - `exchange` number — Currency exchange rate
    - `lang_id` number — Language ID
    - `group_type` number — Country group type
    - `is_eu` boolean — Whether the country is in the European Union
  - `meta` object[] — Metadata (empty array)

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.dev/alteg/apis/developer-tools.md) · [All operations](https://skmtc.dev/alteg/apis/developer-tools/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/alteg/developer-tools/revisions/c89b6494ffd2/schema)
