Loading
Loading
https://api.apifreaks.com/v1.0/geo/subregions
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/geo/subregions"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description |
|---|---|---|---|
| subregions | Array | Mandatory | An array of strings representing the subregions within the specified region. |
| subregions[] | String | Mandatory | A subregion name (e.g., "Southern Asia", "Western Europe", "Eastern Africa"). |