Skip to main content
POST
/
projects
Create a project
curl --request POST \
  --url https://slog.ai/projects \
  --header 'Content-Type: application/json' \
  --header 'slog-api-key: <api-key>' \
  --data '
{
  "name": "Platform v2",
  "teamId": "team_01jqteam0001",
  "status": "PLANNING",
  "description": "Full rewrite of the platform backend."
}
'
{
  "project": {
    "id": "proj_01jqproj0001",
    "reference": "ENG-P1",
    "name": "Platform v2",
    "description": "Full rewrite of the platform backend.",
    "teamId": "team_01jqteam0001",
    "team": {
      "id": "team_01jqteam0001",
      "name": "Engineering",
      "prefix": "ENG"
    },
    "labels": [
      {
        "id": "label_01jqlabel001",
        "name": "bug",
        "color": "#EF4444"
      }
    ],
    "createdAt": "2026-04-01T08:00:00.000Z",
    "updatedAt": "2026-05-01T12:00:00.000Z"
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Body

application/json
name
string
required
Example:

"Platform v2"

teamId
string
required
Example:

"team_01jqteam0001"

status
enum<string>

Lifecycle status of a project.

Available options:
PLANNING,
ACTIVE,
ON_HOLD,
COMPLETED,
CANCELLED
description
string
Example:

"Full rewrite of the platform backend."

Response

Project created.

project
object