Continent Detail with Countries
https://core.hisend.hunnovate.com/api/v1/locations/continents/{continent_id}?api_key={api_key}
This endpoint gets the a continent with countries inside the continent
Path Parameters
continent_id string required
The identifier or id of the continent, it is the id return by the /continents endpoint, you can also use slug e.g africa
Query Params
api_key string required
The api key from your dashboard
200 Success Response Example
{
"data": {
"id": 1,
"planet_id": 3,
"name": "Africa",
"slug": "africa",
"code": "AF",
"created_at": null,
"updated_at": null,
"countries_count": 59,
"countries": [
{
"id": 4,
"planet_id": 3,
"continent_id": 1,
"code": "AO",
"name": "Angola",
"official_name": "Republic of Angola",
"tld": ".ao",
"iso2": "AO",
"iso3": "AGO",
"region": "Africa",
"sub_region": "Middle Africa",
"capital": "Luanda",
"currency_code": "AOA",
"currency_name": "Angolan kwanza",
"currency_symbol": "Kz",
"language_code": "por",
"language_name": "Portuguese",
"phone_code_prefix": +2,
"phone_code_suffix": [
44,
],
"timezone": "UTC+01:00",
"flag": "https://flagcdn.com/w320/ao.png",
"coordinates": [
-12.5,
18.5,
],
"map": "https://goo.gl/maps/q42Qbf1BmQL3fuZg9",
"postal_code": null,
"created_at": "2025-05-02T15:04:47.000000Z",
"updated_at": "2025-05-02T15:04:47.000000Z",
},
],
},
"message": "",
}