Skip to content

Content

Content is the source material your knowledge base is built from: documents, videos, and guides. These endpoints list those resources and return their text.

GET /v1/content

Lists viewable content resources, most recent first, scoped to what you can see. Notes are never returned.

Parameter Type Notes
query string Title keywords. Every word must appear in the title, any order, case-insensitive.
type string One of document, video, guide.
cursor string Pagination cursor from a previous response.
limit number 1–100. Default 50.
Terminal window
curl "https://api.mereon.ai/v1/content?type=video&limit=20" \
-H "Authorization: Bearer $MEREON_TOKEN"
{
"data": [
{
"id": "cnt_44de...",
"title": "Finance Handbook",
"type": "document",
"summary": "Company finance policies and procedures.",
"durationSeconds": null,
"url": "https://mereon.ai/content/finance-handbook",
"createdAt": "2026-01-10T08:00:00.000Z",
"updatedAt": "2026-05-01T12:00:00.000Z"
}
],
"nextCursor": null
}

GET /v1/content/{id}

Title, type, summary, and duration of a single resource.

Terminal window
curl "https://api.mereon.ai/v1/content/cnt_44de" \
-H "Authorization: Bearer $MEREON_TOKEN"
Field Type Notes
id string Content id.
title string Resource title.
type string document, video, or guide.
summary string | null Short summary, when available.
durationSeconds number | null Media duration in seconds (videos only).

GET /v1/content/{id}/text

Full document text or the video transcript, split into ordered chapters.

{
"contentId": "cnt_44de...",
"title": "Finance Handbook",
"type": "document",
"url": "https://mereon.ai/content/finance-handbook",
"chapters": [
{
"id": "chp_1b7c...",
"sequence": 1,
"headline": "Submitting an expense report",
"text": "Attach receipts and submit before month end..."
}
]
}
Field Type Notes
chapters[].id string Chapter id (matches chapter search results).
chapters[].sequence number Order within the content.
chapters[].headline string | null Section heading, when present.
chapters[].text string The chapter’s text or transcript segment.