GET location/countries

GET /api/v2/location/countries

Returns the full list of countries, including internal IDs and ISO codes.


Authentication

Authorization: Bearer <your_api_key>

Endpoint

GET /api/v2/location/countries

No query parameters required.


Response Fields

Field

Type

Description

id

integer

Internal country ID — use as country_id in GET /api/v2/location/regions

name

string

Country name

iso

string

ISO 3166-1 alpha-2 code (2-letter)

iso3

string

ISO 3166-1 alpha-3 code (3-letter)


Example Request

Bash
curl -X GET "https://your-event-domain.com/api/v2/location/countries" \
  -H "Authorization: Bearer your_api_key_here"