Skip to main content
GET /api/v1/projects Requires projects.read permission. Owners and admins see all projects; members with other roles see only the projects they belong to.

Response

projects
Project[]
required
Array of projects in the current organization.

Errors

StatusWhen
401Missing or invalid Bearer token

Example

curl http://localhost:8080/api/v1/projects \
  -H "Authorization: Bearer <token>"
{
  "projects": [
    {
      "id": "p1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "organization_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "slug": "my-project",
      "name": "My Project",
      "description": "Main product feature flags",
      "created_at": "2026-01-15T09:00:00Z",
      "updated_at": "2026-03-10T14:30:00Z"
    }
  ]
}

Build docs developers (and LLMs) love