Skip to main content
GET
/
dedicated-clusters
List dedicated clusters
curl --request GET \
  --url https://cloud.laravel.com/api/dedicated-clusters \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "clusters",
      "attributes": {
        "name": "<string>",
        "region": "us-east-2",
        "type": "applications",
        "tenancy_type": "shared",
        "status": "draft",
        "created_at": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 2,
    "from": 2,
    "last_page": 2,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 1,
    "to": 2,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

The Bearer Token generated on the Cloud UI.

Query Parameters

filter[region]
string
filter[type]
string
filter[status]
string

Response

Paginated set of ClusterResource

data
ClusterResource · object[]
required
meta
object
required