Skip to main content
Knowledge base documents are public — no authentication required.

GET /knowledge/{knowledgeId}

Retrieve a knowledge base document by its ID.
knowledgeId
string
required
The unique knowledge document ID.
Response
{
  "_id": "know_abc123",
  "title": "How to complete your rental application",
  "slug": "how-to-complete-rental-application",
  "content": "<h2>Step 1: Personal Information</h2><p>...</p>",
  "contentType": "html",
  "category": "Applications",
  "tags": ["getting-started", "application"],
  "publishedAt": "2026-01-15T00:00:00.000Z",
  "updatedAt": "2026-02-20T00:00:00.000Z"
}
_id
string
Document ID.
title
string
Document title.
slug
string
URL-friendly identifier.
content
string
Document body — HTML or Markdown depending on contentType.
contentType
string
"html" or "markdown".
category
string
Top-level category grouping.
tags
string[]
Searchable tags.
publishedAt
string
ISO datetime of first publication.
updatedAt
string
ISO datetime of last update.
Error responses
StatusReasonDescription
404"Not found"No document with this ID exists

Notes for Developers

  • Content may be HTML with embedded formatting. Render with a sanitized HTML renderer.
  • Document IDs are typically configured in the organization’s CMS and referenced from within the application UI.