Get page item or repeatable​
GET
/pages/{page_id}/items/{item_path}
Fetches a specific item or repeatable subtree from a page. Returns the item data along with positional metadata (path, parent_path, position, siblings_count).
Authorizations​
bearerToken|siteContext +
bearerToken
Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.
TypeHTTP (bearer)
siteContext
Identifier of the site context when authenticating with a personal access token.
TypeAPI Key (header: X-Nimbu-Site)
or
siteToken
Site-scoped API token that already encodes the site context.
TypeHTTP (bearer)
Parameters​
Path Parameters
page_id*
Page identifier (ObjectId) or fullpath
Typestring
Requireditem_path*
Path to the item (e.g., 'canvas_slug/repeatables/669e.../items/field_slug')
Typestring
RequiredResponses​
item returned
application/json
JSON
{
"path": "string",
"parent_path": "string",
"position": 0,
"siblings_count": 0,
"type": "string",
"data": {
}
}