Premium News Full
1 creditGET /api/premium/history/news/fullRemoves the 25-article cap on the free /api/history/news endpoint. Returns every article in the daily snapshot for a single date or 30-day range.
When to use this endpoint
For full-day news ingest, RAG over historical news, or training-set construction (subject to the inference-only license clause).
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| date | query | string | Single UTC date YYYY-MM-DDe.g. 2026-05-09 |
| from | query | string | Range start (max 30 days)e.g. 2026-05-01 |
| to | query | string | Range ende.g. 2026-05-09 |
* required
Example response
{ "ok": true, "date": "2026-05-09", "total_articles": 121, "articles": [ { "title": "...", "url": "...", "source": "...", "publishedAt": "..." } ], "billing": { "credits_charged": 1, "credits_remaining": 49 } }Code samples
Python SDK
tf._get("/premium/history/news/full", date="2026-05-09")TypeScript SDK
await fetch("https://tensorfeed.ai/api/premium/history/news/full?date=2026-05-09", { headers: { Authorization: "Bearer tf_live_..." } });FAQ
License?
TF aggregates from public RSS feeds; redistribution must preserve original source URLs. Premium responses are licensed for inference-only use, not for training ML models (Section 17.1).