Skip to main content
Creates a new project for the authenticated user.

Authentication

Requires a valid Bearer token.

Request Body

name
string
required
Project name.
description
string
Optional project description.
{
  "name": "my-project",
  "description": "A web application"
}

Response

id
string
required
Unique project identifier (UUID).
name
string
required
Project name.
description
string
Project description.
repo_url
string
Linked repository URL.
created_at
string
required
ISO 8601 timestamp.
updated_at
string
required
ISO 8601 timestamp.
{
  "id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  "name": "my-project",
  "description": "A web application",
  "repo_url": null,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z"
}

Errors

StatusDescription
400Bad Request — missing or invalid name
401Unauthorized — missing or invalid token
409Conflict — project with this name already exists