Skip to content

List Items

GET
/content/{slug}/items
curl --request GET \
--url 'http://localhost:9000/content/example/items?limit=15&offset=0'
slug
required
string
limit
integer
default: 15
offset
integer
0
order
string
fields
string
tag
string
q
string

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
}