GET
/
cloud
/
v1
/
dbaas
/
postgres
/
clusters
/
{project_id}
/
{region_id}
curl --request GET \
  --url https://api.gcore.com/cloud/v1/dbaas/postgres/clusters/{project_id}/{region_id} \
  --header 'Authorization: <api-key>'
{
  "count": 1,
  "results": [
    {
      "cluster_name": "mycluster",
      "created_at": "2023-11-07T05:31:56Z",
      "status": "DELETING",
      "version": "15"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

project_id
integer
required

Project ID

region_id
integer
required

Region ID

Query Parameters

limit
integer

Maximum number of clusters to return

offset
integer

Number of clusters to skip

Response

200 - application/json

List of PostgreSQL clusters

The response is of type object.