v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Projects

List projects

Deprecated: use GET /org/projects instead. This route will be removed on 2026-11-24.

List projects for the authenticated organization.

get/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"
  }
]