GET /articles/{id}
The full text of one article, as markdown by default. The only way to read a whole post, and deliberately one article per call. Served from cache when available, otherwise fetched and extracted on demand. Use this before summarising or quoting.
Held in this tab only (sessionStorage) and sent to the base URL above. Closing the tab clears it.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Article id from search_articles, e.g. “art_abc123”. |
format | string | no | |
max_chars | integer | no | Default 50000, max 80000. |
offset | integer | no | Continue a long article from here. |
Responses
Section titled “Responses”| Status | Meaning |
|---|---|
200 | Get article |
400 | Invalid or missing parameters. |
401 | Missing or invalid API key. |
403 | The key lacks the “articles:read” scope. |
429 | Rate limit exceeded. See Retry-After. |
Requires the articles:read scope.