DocsSearch
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.
Authorization
Bearer AuthorizationBearer <token>
JWT Authorization header using Bearer scheme
In: header
Query Parameters
query?string
Free-text search query (e.g. "create webhook tool").
locale?string
Language locale: ru (default) or en.
Default
"ru"Response Body
application/json
curl -X GET "https://api.speaknode.com/api/Docs/search"{
"base_url": "string",
"hits": [
{
"url": "string",
"title": "string",
"snippets": [
"string"
]
}
],
"error": "string"
}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. GET
Previous Page
/files/{fileId}/exists GET
Next Page