Skip to main content
GET
/
caches
/
types
List all available cache types with their configuration options
curl --request GET \
  --url https://cloud.laravel.com/api/caches/types \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "<string>",
      "label": "<string>",
      "regions": [
        "us-east-2"
      ],
      "sizes": [
        {
          "value": "<string>",
          "label": "<string>"
        }
      ],
      "supports_auto_upgrade": true
    }
  ]
}

Authorizations

Authorization
string
header
required

The Bearer Token generated on the Cloud UI.

Response

200 - application/json
data
object[]
required