Prisma Next is in early access.Read the docs
Regions

Get all regions

Returns all available regions across products. Optionally filter by product.

Returns all available regions across products. Optionally filter by product.

GET/v1/regions
AuthorizationBearer <token>

OAuth2 authentication

In: header

Scope: workspace:admin, offline_access

Query Parameters

product?string
Value in"postgres" | "accelerate"

Response Body

application/json

application/json

curl -X GET "https://api.prisma.io/v1/regions"
{
  "data": [
    {
      "id": "string",
      "type": "region",
      "name": "string",
      "product": "postgres",
      "status": "available"
    }
  ]
}