Skip to content

Get an entry

Returns a single entry including its translations array.

GET /api/v1/entries/{id}

AuthRequired
Query parametersNone
BodyNone
NameTypeDescription
idstringEntry id
Authorization: Bearer <your-api-key>
Terminal window
curl -sS https://collingo.app/api/v1/entries/clentry0123456789abcdefg \
-H "Authorization: Bearer <your-api-key>"
{
"id": "clentry0123456789abcdefg",
"groupId": "clgroupaaaaaaaaaaaaaaaaaa",
"technicalName": "labelImprint",
"baseTerm": "Imprint",
"contextInfo": "Footer legal link",
"createdAt": "2026-07-01T12:15:00Z",
"translations": [
{
"id": "cltr0123456789abcdefghij",
"language": "de-DE",
"translation": "Impressum",
"translatorId": "cluser0123456789abcdefgh",
"createdAt": "2026-07-01T13:00:00Z"
}
]
}
StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
404Entry not found
500Database or internal error