Skip to content

Get Item

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

OK

Media type application/json
object
item
object
id
string
title
string
slug
string
body
string
format
string
status
string
published_at
string format: date-time
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
content_collection
object
id
string
label
string
slug
string
format
string
content_fields
Array<object>
object
id
string
name
string
label
string
field_type
string
required
string
options
string
sort_order
string
creator
object
id
string
name
string
bio
string
avatar_url
string
tags
Array<object>
object
id
string
value
string
metadata
object
key
additional properties
any
Example generated
{
"item": {
"id": "example",
"title": "example",
"slug": "example",
"body": "example",
"format": "example",
"status": "example",
"published_at": "2026-04-15T12:00:00Z",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"content_collection": {
"id": "example",
"label": "example",
"slug": "example",
"format": "example",
"content_fields": [
{
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"required": "example",
"options": "example",
"sort_order": "example"
}
]
},
"creator": {
"id": "example",
"name": "example",
"bio": "example",
"avatar_url": "example"
},
"tags": [
{
"id": "example",
"value": "example",
"metadata": {}
}
]
}
}