GET
/org/projectsList projects for the authenticated organization.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Query Parameters
limit?integer
Maximum number of results to return
Range
value <= 100Default
20offset?integer
Number of results to skip
Default
0query?string
Case-insensitive substring match against project name
name?string
Exact-match filter on project name using the database collation. In production, matching is case- and accent-insensitive.
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/org/projects"[ { "id": "string", "name": "string", "status": "active", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }]{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}Update project limits PATCH
Deprecated: use `PATCH /org/projects/{id}/limits` instead. This route will be removed on 2026-11-24. Update resource limit overrides for a project. Only fields present in the request are modified. Set a field to 0 to remove that limit cap; omit a field to leave it unchanged.
Create a project POST
Create a new project within the authenticated organization.