List Items
GET
/content/{slug}/items
const url = 'http://localhost:9000/content/example/items?limit=15&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/content/example/items?limit=15&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” slug
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
tag
string
q
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
items
Array<object>
object
id
string
title
string
slug
string
body
string
status
string
published_at
string format: date-time
metadata
object
key
additional properties
any
created_at
string format: date-time
content_collection
object
id
string
label
string
slug
string
creator
object
id
string
name
string
tags
Array<object>
object
id
string
value
string
count
integer
limit
integer
offset
integer
Example generated
{ "items": [ { "id": "example", "title": "example", "slug": "example", "body": "example", "status": "example", "published_at": "2026-04-15T12:00:00Z", "metadata": {}, "created_at": "2026-04-15T12:00:00Z", "content_collection": { "id": "example", "label": "example", "slug": "example" }, "creator": { "id": "example", "name": "example" }, "tags": [ { "id": "example", "value": "example" } ] } ], "count": 1, "limit": 1, "offset": 1}