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 |
|---|---|---|
|
|
integer |
Internal country ID — use as |
|
|
string |
Country name |
|
|
string |
ISO 3166-1 alpha-2 code (2-letter) |
|
|
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"