What is Xata?
Available regions

Available regions

Edit on GitHub

The following Amazon Web Services regions are available:

RegionZoneLocation
ap-southeast-2AustraliaSydney
eu-central-1EuropeFrankfurt
eu-west-1EuropeIreland
us-east-1United StatesNorth Virginia
us-west-1United StatesOregon

Alternatively, you can also pull the list of regions via the listRegions API:

curl https://api.xata.io/workspaces/{workspace_id}/regions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Will yield the response:

{
  "regions": [
    {
      "id": "eu-west-1",
      "name": "Ireland"
    },
    {
      "id": "ap-southeast-2",
      "name": "Sydney"
    },
    {
      "id": "eu-central-1",
      "name": "Frankfurt"
    },
    {
      "id": "us-east-1",
      "name": "N. Virginia"
    },
    {
      "id": "us-west-2",
      "name": "Oregon"
    }
  ]
}