Retrieve all subregions belonging to a specific region. For example, region “Asia” contains subregions like “Southern Asia”, “Eastern Asia”, etc.
Availability: Supporter plan and above.
Authentication
Your API key for authentication
Path Parameters
Numeric region ID (e.g., 3 for Asia)
Query Parameters
Search filter on subregion name. Min 2 characters. Requires Supporter+ plan.
Response
Unique identifier for the subregion
curl -X GET 'https://api.countrystatecity.in/v1/regions/3/subregions' \
-H 'X-CSCAPI-KEY: YOUR_API_KEY'
[
{ "id": 14, "name": "Southern Asia", "region_id": 3 },
{ "id": 15, "name": "Eastern Asia", "region_id": 3 },
{ "id": 16, "name": "South-Eastern Asia", "region_id": 3 },
{ "id": 17, "name": "Western Asia", "region_id": 3 },
{ "id": 18, "name": "Central Asia", "region_id": 3 }
]