Get Content
GET
/admin/content/{collectionId}
const url = 'http://localhost:9000/admin/content/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?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” collectionId
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
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" } } ] }}