CMS > Entries

List entries

Return the active entries in a collection.

get/v1/cms/collections/{collectionId}/entries

Returns 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

collectionIdstringrequired

ID of the collection.

Query parameters

pageSizeinteger

Results per page, from 1 to 100. Defaults to 50.

pageTokenstring | null

The `nextPageToken` from the previous request. Pass it unchanged.

Response · 200

entriesobject[]required
Show 6 properties
idstringrequired
collectionIdstringrequired
valuesobjectrequired
statusenumrequired

One of: active, deleted

createdAtstringrequired
updatedAtstringrequired
nextPageTokenstring | nullrequired

Example 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.

getTry it
/v1/cms/collections/{collectionId}/entries

Stored in this browser tab only. Requests go directly to the API — the token never reaches the docs site.

Path parameters

Query parameters

Add a token to send a request.

https://api.superfunnel.ai/v1/cms/collections/{collectionId}/entries

curl -X GET 'https://api.superfunnel.ai/v1/cms/collections/{collectionId}/entries' \
  -H 'x-api-key: Bearer YOUR_API_TOKEN'