Skip to content

List untranslated entries

Lists entries in a project that are missing a translation for the given language. Useful for translation progress tooling.

GET /api/v1/projects/{id}/entries/untranslated

AuthRequired
BodyNone
NameTypeDescription
idstringProject id
NameTypeDefaultDescription
languageCodestringRequired. Target locale to check
limitinteger100Page size (1–100)
offsetinteger0Number of items to skip
Authorization: Bearer <your-api-key>
Terminal window
curl -sS "https://collingo.app/api/v1/projects/clproj0123456789abcdefgh/entries/untranslated?languageCode=de-DE" \
-H "Authorization: Bearer <your-api-key>"
{
"limit": 100,
"offset": 0,
"total": 1,
"result": [
{
"id": "clentry0123456789abcdefg",
"groupId": "clgroupaaaaaaaaaaaaaaaaaa",
"technicalName": "labelImprint",
"baseTerm": "Imprint",
"contextInfo": "Footer legal link"
}
]
}
StatusWhen
400Validation failed
401Missing or invalid API key (ERR_UNAUTHORIZED)
404Project not found
500Database or internal error