Skip to main content
POST
/
v1
/
projects
Create project
curl --request POST \
  --url https://api.example.com/v1/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "templateSlug": "<string>"
}
'
name
string
required
Project name (1-200 characters).
description
string
Project description (max 2,000 characters).
templateSlug
string
Apply a template to pre-populate the canvas. Use a slug from the templates list.
curl -X POST https://api.getkommit.ai/v1/projects \
  -H "Authorization: Bearer km_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Payment System",
    "description": "Stripe integration for subscription billing"
  }'