Skip to main content
Returns a single project by its ID.

Authentication

Requires a valid Bearer token.

Path Parameters

id
string
required
Project ID (UUID).

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": "https://github.com/user/repo",
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z"
}

Errors

StatusDescription
401Unauthorized — missing or invalid token
404Not Found — project does not exist or you do not have access