Skip to main content
GET
/
v1
/
projects
List projects
curl --request GET \
  --url https://api.example.com/v1/projects
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "status": "<string>",
      "templateSlug": "<string>",
      "createdBy": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}
status
string
Filter by project status. One of active or archived.
cursor
string
Pagination cursor from a previous response.
limit
number
default:"20"
Items per page (1-100).
data
array
nextCursor
string
Cursor for the next page, or null if no more results.
curl https://api.getkommit.ai/v1/projects?status=active&limit=10 \
  -H "Authorization: Bearer km_your_api_key"