Premium News Source Health
1 creditGET /api/premium/history/news/source-healthPer-source RSS poll reliability over time. Each entry has poll_count, success_count, and a derived reliability_pct for one source on one day. 90-day max range.
When to use this endpoint
For monitoring whether your news ingest is degrading, picking which sources to add/drop, or building reliability dashboards for editorial pipelines.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| from* | query | string | Start date YYYY-MM-DDe.g. 2026-04-01 |
| to* | query | string | End date YYYY-MM-DD (max 90 days)e.g. 2026-05-09 |
* required
Example response
{ "ok": true, "range": { "from": "2026-04-01", "to": "2026-05-09" }, "sources": [ { "id": "anthropic-blog", "by_date": { "2026-05-09": { "poll_count": 144, "success_count": 144, "reliability_pct": 100 } } } ], "billing": { "credits_charged": 1, "credits_remaining": 49 } }Code samples
Python SDK
tf._get("/premium/history/news/source-health", **{"from":"2026-04-01","to":"2026-05-09"})TypeScript SDK
await fetch("https://tensorfeed.ai/api/premium/history/news/source-health?from=2026-04-01&to=2026-05-09", { headers: { Authorization: "Bearer tf_live_..." } });FAQ
How often is this updated?
Per-source health rolls up at the end of each UTC day. Series for date D is fixed once D rolls.