Quickstart
Walk through the core JSON REST API workflow in a few curl commands.
export BASE=https://example.test/api
export KEY=api_exampletoken000000000000
AUTH="Authorization: Bearer $KEY"1. List collections
curl -H "$AUTH" "$BASE/cms/collections"{
"success": true,
"data": [
{ "index": 0, "label": "Blog", "slug": "blog", "path": "content/blog" }
],
"timestamp": "2026-04-20T10:00:00+00:00"
}2. List items
3. Create an item
4. Read the raw item, then update it
5. Delete an item
Last updated
Was this helpful?

