List untranslated entries
What it does
Section titled “What it does”Lists entries in a project that are missing a translation for the given language. Useful for translation progress tooling.
Request
Section titled “Request”GET /api/v1/projects/{id}/entries/untranslated
| Auth | Required |
| Body | None |
Path parameters
Section titled “Path parameters”| Name | Type | Description |
|---|---|---|
id | string | Project id |
Query parameters
Section titled “Query parameters”| Name | Type | Default | Description |
|---|---|---|---|
languageCode | string | — | Required. Target locale to check |
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/clproj0123456789abcdefgh/entries/untranslated?languageCode=de-DE" \ -H "Authorization: Bearer <your-api-key>"Response
Section titled “Response”200 OK
Section titled “200 OK”{ "limit": 100, "offset": 0, "total": 1, "result": [ { "id": "clentry0123456789abcdefg", "groupId": "clgroupaaaaaaaaaaaaaaaaaa", "technicalName": "labelImprint", "baseTerm": "Imprint", "contextInfo": "Footer legal link" } ]}Errors
Section titled “Errors”| Status | When |
|---|---|
400 | Validation failed |
401 | Missing or invalid API key (ERR_UNAUTHORIZED) |
404 | Project not found |
500 | Database or internal error |