# List available countries

> Retrieves all country entities for use in regional configuration.

Source: https://docs.applivery.com/en/api/platform/countries/get-countries/

---

# List available countries

Retrieves all country entities for use in regional configuration.

No parameters.

No request body.

**Request:** `GET https://api.applivery.io/v1/countries`

## OpenAPI specification

Machine-readable endpoint definition (dereferenced OpenAPI operation).

```json
{
  "method": "GET",
  "path": "/countries",
  "baseUrl": "https://api.applivery.io/v1",
  "servers": [
    {
      "url": "https://api.applivery.io/v1"
    }
  ],
  "security": [
    {
      "ApiKeyAuth": []
    }
  ],
  "auth": {
    "type": "http",
    "scheme": "bearer",
    "header": "Authorization",
    "format": "Bearer <token>"
  },
  "responses": {
    "200": {
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "status": {
                "type": "boolean"
              },
              "data": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "maxLength": 128,
                      "description": "Official country name as recognized internationally, used for display and localization purposes.",
                      "example": "Spain"
                    },
                    "code": {
                      "type": "string",
                      "maxLength": 128,
                      "description": "ISO 3166-1 alpha-2 country code uniquely identifying the country for regulatory and regional operations.",
                      "example": "ES"
                    },
                    "phonePrefix": {
                      "type": "string",
                      "maxLength": 128,
                      "description": "International dialing prefix associated with the country, used for phone number formatting and validation.",
                      "example": "+34"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
```
