Skip to content

Get Content

GET
/admin/content/{collectionId}
curl --request GET \
--url 'http://localhost:9000/admin/content/example?limit=20&offset=0'
collectionId
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
content
object
id
string
label
string
slug
string
format
string
prefix
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
content_fields
Array<object>
object
id
string
name
string
label
string
field_type
string
required
string
options
string
default_value
string
sort_order
string
source_relationships
Array<object>
object
id
string
relationship_type
string
source_collection
object
id
string
label
string
target_collection
object
id
string
label
string
target_relationships
Array<object>
object
id
string
relationship_type
string
source_collection
object
id
string
label
string
target_collection
object
id
string
label
string
Example generated
{
"content": {
"id": "example",
"label": "example",
"slug": "example",
"format": "example",
"prefix": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"content_fields": [
{
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"required": "example",
"options": "example",
"default_value": "example",
"sort_order": "example"
}
],
"source_relationships": [
{
"id": "example",
"relationship_type": "example",
"source_collection": {
"id": "example",
"label": "example"
},
"target_collection": {
"id": "example",
"label": "example"
}
}
],
"target_relationships": [
{
"id": "example",
"relationship_type": "example",
"source_collection": {
"id": "example",
"label": "example"
},
"target_collection": {
"id": "example",
"label": "example"
}
}
]
}
}