GET/api/regions
Cloud and data platform regions, filtered by provider, country or status
- providerProvider id, e.g. aws, azure, gcp, oracle, snowflake
- countryISO country code, e.g. DE
- statusga, preview or announced
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://regions.fru.dev/api/regions?provider=aws&country=DE&limit=5"Sample response
JSON
{
"regions": [
{
"id": "aws:eu-central-1",
"provider": "aws",
"code": "eu-central-1",
"name": "Europe (Frankfurt)",
"place": "Frankfurt",
"metro": "frankfurt",
"cc": "DE",
"lat": 50.1109,
"lon": 8.6821,
"precision": "provider",
"launched": "2014",
"azs": 3,
"status": "ga",
"sovereign": ""
},
{
"id": "aws:eusc-de-east-1",
"provider": "aws",
"code": "eusc-de-east-1",
"name": "AWS European Sovereign Cloud (Germany)",
"place": "Germany",
"metro": "berlin",
"cc": "DE",
"lat": 52.3667,
"lon": 13.4167,
"precision": "provider",
"launched": "2026",
"azs": 3,
"status": "ga",
"sovereign": "sovereign"
}
],
"count": 2,
"total": 2,
"limit": 5,
"offset": 0,
"next": null,
"disclaimer": "From providers' published region lists. Check the provider before deploying."
}