CMS > Entries
List entries
Return the active entries in a collection.
get
/v1/cms/collections/{collectionId}/entriesReturns the active entries in an active collection, keyed by field ID. If the
collection itself has been deleted, this returns 404 rather than an empty
list.
Results are paged — see Pagination.
Path parameters
collectionIdstringrequiredID of the collection.
Query parameters
pageSizeintegerResults per page, from 1 to 100. Defaults to 50.
pageTokenstring | nullThe `nextPageToken` from the previous request. Pass it unchanged.
Response · 200
entriesobject[]requiredShow 6 propertiesHide properties
entriesobject[]requiredidstringrequiredcollectionIdstringrequiredvaluesobjectrequiredstatusenumrequiredOne of: active, deleted
createdAtstringrequiredupdatedAtstringrequirednextPageTokenstring | nullrequiredExample response
{
"entries": [
{
"id": "TuVwXyZaBcDeFgHiJkLm",
"collectionId": "AbCdEfGhIjKlMnOpQrSt",
"values": {
"title": "Introducing the CMS API",
"category": "guides",
"published_at": "2026-08-10T09:30:00Z"
},
"status": "active",
"createdAt": "2026-08-10T09:30:00.000Z",
"updatedAt": "2026-08-10T09:30:00.000Z"
}
],
"nextPageToken": null
}Errors: 400, 401, 404, 405, 429, 500. See Errors for the response shape.