Skip to main content

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.

The Laravel Cloud API lets you manage your Laravel Cloud organization, applications, environments, and resources programmatically. If you prefer a terminal workflow, the Laravel Cloud CLI is built on top of this API and provides an interactive command-line experience.

Base URL

The base URL for the Laravel Cloud API is:
https://cloud.laravel.com/api

Authentication

All API requests require a bearer token in the Authorization header. See API authentication for setup instructions.

Make your first request

Once you have a token, you can make requests directly to the API. The following example returns a JSON:API list of your applications:
curl https://cloud.laravel.com/api/applications \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

Next steps

  • Review API authentication for token setup and security guidance.
  • Explore Laravel Cloud CLI if you want to work from the terminal.
  • Browse the endpoint reference in the API sidebar to see available resources and request schemas.