Get Item
GET
/admin/content/{collectionId}/items/{itemId}
const url = 'http://localhost:9000/admin/content/example/items/example?limit=20&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/admin/content/example/items/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” collectionId
required
string
itemId
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”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": {} } ] }}