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.

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