DocsRead
Fetches a documentation page by URL and returns its plain-text content (HTML tags stripped, scripts/styles removed). Use this after M:AspNetBackend.API.Controllers.DocsController.Search(System.String,System.String,System.Threading.CancellationToken) to read a specific page fully.
Authorization
Bearer AuthorizationBearer <token>
JWT Authorization header using Bearer scheme
In: header
Query Parameters
url?string
Full absolute URL of the doc page (must be on the configured Docs:BaseUrl host).
Response Body
application/json
curl -X GET "https://api.speaknode.com/api/Docs/read"{
"url": "string",
"content": "string",
"error": "string"
}/campaigns/registry-properties GET
Previous Page
Searches the documentation via the Fumadocs Orama search endpoint. Returns matched pages with title/url and matching text snippets. Use this FIRST before calling M:AspNetBackend.API.Controllers.DocsController.Read(System.String,System.Threading.CancellationToken) — it's faster and gives you the relevant fragments without downloading full pages. GET
Next Page