Skip to main content
POST
/
projects
Create project
curl --request POST \
  --url https://api.envless.cloud/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "marketing-site",
  "slug": "marketing-site"
}
'
{
  "success": true,
  "code": 201,
  "message": "Project created.",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "icon": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Personal access key from https://app.envless.cloud/keys. Pass as Authorization: Bearer ev_live_....

Body

application/json
name
string
required
Example:

"marketing-site"

slug
string
required
Example:

"marketing-site"

Response

Project created

success
boolean
Example:

true

code
integer
Example:

201

message
string
Example:

"Project created."

data
object