Nimbu Developer Docs
ReferencePages

Fetch a page item subtree

GET
/pages/{page_id}/items/{item_path}

Returns a serialized subtree of items for the given page, scoped to the requested path.

Authorization

AuthorizationBearer <token>

Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.

In: header

X-Nimbu-Site<token>

Identifier of the site context when authenticating with a personal access token.

In: header

Path Parameters

page_id*string

Page identifier or fullpath

item_path*string

Path within the page to a specific item or repeatable subtree (forward slashes encoded).

Response Body

application/json

curl -X GET "https://example.com/pages/string/items/string"
{
  "message": "string",
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}