List projects
What it does
Section titled “What it does”Lists projects the API key owner can access (owned and member projects), as a paginated page.
Request
Section titled “Request”GET /api/v1/projects
| Auth | Required |
| Path parameters | None |
| Body | None |
Query parameters
Section titled “Query parameters”| Name | Type | Default | Description |
|---|---|---|---|
limit | integer | 100 | Page size (1–100) |
offset | integer | 0 | Number of items to skip |
Headers
Section titled “Headers”Authorization: Bearer <your-api-key>Example
Section titled “Example”curl -sS "https://collingo.app/api/v1/projects?limit=20&offset=0" \ -H "Authorization: Bearer <your-api-key>"Response
Section titled “Response”200 OK
Section titled “200 OK”{ "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 } } ]}Errors
Section titled “Errors”| Status | When |
|---|---|
400 | Invalid limit or offset |
401 | Missing or invalid API key (ERR_UNAUTHORIZED) |
500 | Database or internal error |