Skip to content

List entries

Lists entries in a group as a paginated page of summaries (without nested translations). Optional search filters by technical name or base term.

GET /api/v1/groups/{id}/entries

AuthRequired
BodyNone
NameTypeDescription
idstringGroup id
NameTypeDefaultDescription
limitinteger100Page size (1–100)
offsetinteger0Number of items to skip
searchstringOptional search filter
Authorization: Bearer <your-api-key>
Terminal window
curl -sS "https://collingo.app/api/v1/groups/clgroupaaaaaaaaaaaaaaaaaa/entries?search=label" \
-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",
"createdAt": "2026-07-01T12:15:00Z"
}
]
}
StatusWhen
400Invalid query
401Missing or invalid API key (ERR_UNAUTHORIZED)
404Group not found
500Database or internal error