Loading
Loading
https://api.apifreaks.com/v1.0/geo/regions
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/regions"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description |
|---|---|---|---|
| regions | Array | Mandatory | An array of strings representing all available geographical regions. |
| regions[] | String | Mandatory | A region name (e.g., "Africa", "Americas", "Asia", "Europe", "Oceania", "Polar"). |