Regions API Endpoints
Fetch all available Nodion Regions with our API.
Contents
Get Regions
To list all available regions you can simply send a GET
request to the following endpoint.
https://api.nodion.com/v1/regions
Required Headers: Authorization
Example Response:
{ "regions": [ { "id": "5903725b-f554-4294-ab17-c992a765a001", "name": "EU Central", "slug": "euc" }, { "id": "5e4ce16b-7409-4bb4-849a-9aec0ec0c7af", "name": "US East", "slug": "use" }, { "id": "c7d0dd2d-1ea9-49ac-9261-97b1bc0762db", "name": "US West", "slug": "usw" }, { "id": "2e0d4946-06f6-4ba8-8ed8-2668d6dccd9c", "name": "APAC Central", "slug": "apc" } ] }