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.

GET
/Docs/search
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"
}