Platform manuals are the developer-focused reference for cbk.ai. The docs.cbk.ai site owns the markdown corpus and exposes it without requiring an API secret. List the available manuals with:
GET https://docs.cbk.ai/api/list Accept: text/markdownhttp
The response contains an items array and a null cursor. Each item
includes its stable ID, title, description, category, tags, display index,
canonical docs.cbk.ai link, and source timestamps. Request the canonical
link with Accept: text/markdown to retrieve the complete Markdown source.
The optional take query parameter limits the response to between 1 and
100 items. JSON is returned by default; Accept: text/markdown returns a
Markdown catalogue with the same canonical links and metadata.
Manuals are generated from @manual blocks across the monorepo. This keeps
their reference material close to the implementation while allowing the
docs site, rather than the product application, to own publication and
discovery.
Searching Manuals
Search the manual corpus with a natural-language or keyword query:
POST https://docs.cbk.ai/api/search Content-Type: application/json Accept: text/markdown { "search": "create records in a dataset", "take": 10 }http
Search runs inside docs.cbk.ai against the manuals owned by that site. It
ranks matches across titles, descriptions, categories, tags, and full
markdown bodies. Each result includes a normalized relevance score and an
excerpt around the matching text. search must contain at least two
characters. take is optional and is capped at 100 results. JSON is
returned by default; Accept: text/markdown returns a Markdown result list.