Get an entry
What it does
Section titled “What it does”Returns a single entry including its translations array.
Request
Section titled “Request”GET /api/v1/entries/{id}
| Auth | Required |
| Query parameters | None |
| Body | None |
Path parameters
Section titled “Path parameters”| Name | Type | Description |
|---|---|---|
id | string | Entry id |
Headers
Section titled “Headers”Authorization: Bearer <your-api-key>Example
Section titled “Example”curl -sS https://collingo.app/api/v1/entries/clentry0123456789abcdefg \ -H "Authorization: Bearer <your-api-key>"Response
Section titled “Response”200 OK
Section titled “200 OK”{ "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" } ]}Errors
Section titled “Errors”| Status | When |
|---|---|
401 | Missing or invalid API key (ERR_UNAUTHORIZED) |
404 | Entry not found |
500 | Database or internal error |