List entries
What it does
Section titled “What it does”Lists entries in a group as a paginated page of summaries (without nested translations). Optional search filters by technical name or base term.
Request
Section titled “Request”GET /api/v1/groups/{id}/entries
| Auth | Required |
| Body | None |
Path parameters
Section titled “Path parameters”| Name | Type | Description |
|---|---|---|
id | string | Group id |
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 |
search | string | — | Optional search filter |
Headers
Section titled “Headers”Authorization: Bearer <your-api-key>Example
Section titled “Example”curl -sS "https://collingo.app/api/v1/groups/clgroupaaaaaaaaaaaaaaaaaa/entries?search=label" \ -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", "createdAt": "2026-07-01T12:15:00Z" } ]}Errors
Section titled “Errors”| Status | When |
|---|---|
400 | Invalid query |
401 | Missing or invalid API key (ERR_UNAUTHORIZED) |
404 | Group not found |
500 | Database or internal error |