GET location/regions

GET /api/v2/location/regions

Returns a list of regions (states/provinces) for a given country.


Authentication

Authorization: Bearer <your_api_key>

Endpoint

GET /api/v2/location/regions

Query Parameters

Parameter

Type

Required

Description

country_id

integer

Yes

The internal country ID. Use GET /api/v2/location/countries to retrieve IDs


Response Fields

Field

Type

Description

id

integer

Region ID

name

string

Region name


Example Request

Bash
curl -X GET "https://your-event-domain.com/api/v2/location/regions?country_id=235" \
  -H "Authorization: Bearer your_api_key_here"