Skip to content

Get Content

GET
/content/{slug}
curl --request GET \
--url 'http://localhost:9000/content/example?limit=20&offset=0'
slug
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
content_fields
Array<object>
object
id
string
name
string
label
string
field_type
string
sort_order
string
Example generated
{
"content": {
"id": "example",
"label": "example",
"slug": "example",
"format": "example",
"prefix": "example",
"metadata": {},
"content_fields": [
{
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"sort_order": "example"
}
]
}
}