Skip to main content
POST
/
projects
Create
curl --request POST \
  --url https://app.coolify.io/api/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uuid": "<string>",
  "description": "<string>"
}'
{
  "uuid": "og888os"
}

Authorizations

Authorization
string
header
required

Go to Keys & Tokens / API tokens and create a new token. Use the token as the bearer token.

Body

application/json

Project created.

uuid
string

The name of the project.

description
string

The description of the project.

Response

Project created.

uuid
string

The UUID of the project.

Example:

"og888os"

I