Skip to content

Items

An item is a concrete piece of knowledge under a topic: a process, a policy, or a fact. To find items, read a topic’s items or use search.

GET /v1/items/{id}

Returns the item, its nested child items, and the evidence backing it: verbatim quotes, video timestamps or document character ranges, a confidence score, and links to the original content.

ParameterTypeNotes
includeHistorybooleanInclude archived and superseded records.
Terminal window
curl "https://api.mereon.ai/v1/items/itm_2c8b" \
-H "Authorization: Bearer $MEREON_TOKEN"
{
"id": "itm_2c8b...",
"topicId": "top_9f2a...",
"type": "process",
"title": "Approve an expense over $500",
"body": "Expenses over $500 require sign-off from the cost-center manager...",
"parentItemId": null,
"status": "ACTIVE",
"supersededById": null,
"url": "https://mereon.ai/items/itm_2c8b",
"createdAt": "2026-01-12T09:05:00.000Z",
"updatedAt": "2026-05-30T16:25:00.000Z",
"children": [],
"evidence": [
{
"id": "evd_77aa...",
"contentId": "cnt_44de...",
"contentTitle": "Finance Handbook",
"contentType": "document",
"quote": "Any expense above $500 must be approved by the cost-center manager.",
"startTime": null,
"endTime": null,
"charStart": 10422,
"charEnd": 10489,
"confidence": 0.94,
"url": "https://mereon.ai/content/finance-handbook#10422"
}
]
}
FieldTypeNotes
idstringItem id.
topicIdstringThe topic this item belongs to.
typestringItem kind, for example process, policy, fact. Open set.
titlestringItem title.
bodystring | nullFull text of the item, when present.
parentItemIdstring | nullParent item, when this is a sub-step.
childrenItem[]Nested child items, same shape.
evidenceEvidence[]Source evidence. Present on this detail endpoint.
FieldTypeNotes
contentIdstringThe source content this evidence comes from.
contentTitlestring | nullTitle of the source content.
contentTypestring | nullFor example document or video.
quotestring | nullVerbatim quote from the source, when captured.
startTime endTimenumber | nullVideo time range in seconds, for video sources.
charStart charEndnumber | nullCharacter range in the document text, for document sources.
confidencenumberExtraction confidence, 0 to 1.
urlstringDeep link to the source location.