Skip to content

List projects

Lists projects the API key owner can access (owned and member projects), as a paginated page.

GET /api/v1/projects

AuthRequired
Path parametersNone
BodyNone
NameTypeDefaultDescription
limitinteger100Page size (1–100)
offsetinteger0Number of items to skip
Authorization: Bearer <your-api-key>
Terminal window
curl -sS "https://collingo.app/api/v1/projects?limit=20&offset=0" \
-H "Authorization: Bearer <your-api-key>"
{
"limit": 20,
"offset": 0,
"total": 1,
"result": [
{
"id": "clproj0123456789abcdefgh",
"ownerId": "cluser0123456789abcdefgh",
"owner": {
"id": "cluser0123456789abcdefgh",
"firstName": "Ada",
"lastName": "Lovelace"
},
"name": "My mobile app",
"baseLanguage": "en-US",
"translationLanguages": ["de-DE", "fr-FR"],
"createdAt": "2026-07-01T12:00:00Z",
"capabilities": {
"isOwner": true,
"isOverLimit": false,
"canUpdateProject": true,
"canDeleteProject": true,
"canManageMembers": true,
"canAssignAdminRole": true,
"canTransferOwnership": true,
"canLeave": false,
"canReadEntries": true,
"canEditEntries": true,
"canTranslate": true,
"canReadGroups": true,
"canEditGroups": true,
"role": null
}
}
]
}
StatusWhen
400Invalid limit or offset
401Missing or invalid API key (ERR_UNAUTHORIZED)
500Database or internal error