List projects
Returns all projects under the authenticated organization, ordered by creation date (newest first).
GET/projects
Authorization
Requires: BearerAuth
Query parameters
limitintegerquerydefault: 20Maximum number of projects to return (1–100)
statusenum (pending, building, active...)queryFilter by project status
options:
pendingbuildingactivefailedResponse
200 — Array of projects
dataobject[]totalintegerTotal count across all pages
401 — Missing or invalid API key
errorstringrequiredMachine-readable error code (e.g. `invalid_request`, `unauthorized`, `not_found`)
messagestringrequiredHuman-readable error description
List projects
curl --request GET \ --url 'https://api.codivdocs.com/v1/projects' \ --header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "<string>",
"slug": "<string>",
"status": "pending",
"created_at": "2026-04-13T03:23:48.988Z",
"github_repo": "<string>",
"custom_domain": "<string>",
"github_branch": "main",
"last_deploy_at": "2026-04-13T03:23:48.988Z"
}
],
"total": 0
}