v101

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-05141179397.6 KB
Projects

List projects

List projects for the authenticated organization.

get/org/projects

Query parameters

limitinteger

Maximum number of results to return

offsetinteger

Number of results to skip

querystring

Case-insensitive substring match against project name

namestring

Exact-match filter on project name using the database collation. In production, matching is case- and accent-insensitive.

Response

List of projects

idstring required

Unique project identifier

namestring required

Project name

status'active' | 'archived' required

Project status

created_atstring date-time required

When the project was created

updated_atstring date-time required

When the project was last updated

Example response

[
  {
    "id": "proj_abc123",
    "name": "production",
    "status": "active"
  }
]