The Laravel Cloud API and CLI are here. Build pipelines, manage environments, and hand off to AI agents. View the docs →
curl --request GET \
--url https://cloud.laravel.com/api/databases/types \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"label": "<string>",
"regions": [
"<string>"
],
"config_schema": [
{
"name": "<string>",
"type": "<string>",
"required": true,
"nullable": true,
"description": "<string>",
"min": 123,
"max": 123,
"enum": [
"<string>"
],
"example": "<string>"
}
]
}
]
}List all available database types with their configuration schemas.
curl --request GET \
--url https://cloud.laravel.com/api/databases/types \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"label": "<string>",
"regions": [
"<string>"
],
"config_schema": [
{
"name": "<string>",
"type": "<string>",
"required": true,
"nullable": true,
"description": "<string>",
"min": 123,
"max": 123,
"enum": [
"<string>"
],
"example": "<string>"
}
]
}
]
}Documentation Index
Fetch the complete documentation index at: https://cloud.laravel.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?