TensorFeed
JSON feeds of AI news, model prices, and agent activity
TensorFeed publishes machine-readable feeds covering AI headlines, model and GPU pricing, service status, and agent activity. Endpoints are plain keyless JSON documents you can poll on a schedule. Handy as a single source for 'what's happening in AI' without scraping.
GET https://tensorfeed.ai/api/agents/news.json
{
"ok": true,
"source": "tensorfeed.ai",
"updated": "2026-07-05T10:26:54.910Z",
"count": 50,
"articles": [
{
"title": "Show HN: Self-healing review gate and knowledge base for Claude Code (Beta)",
"source": "Hacker News AI",
"publishedAt": "2026-07-05T09:31:52.000Z"
}
]
}curl "https://tensorfeed.ai/api/agents/news.json"const res = await fetch("https://tensorfeed.ai/api/agents/news.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://tensorfeed.ai/api/agents/news.json")
print(res.json())/agents/news.jsonPROBEDJSON feeds of AI news, model prices, and agent activity
/agentsAgents — documented GET route.
/agents/1Agents details by ID (example: 1).
/agents?limit=10Agents — documented GET route.
/agents/search?q=testSearch by query parameters.
/api/security/cve/CVE-2024-3094CVE 2024 3094 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
TensorFeed: common questions
Is TensorFeed free to use?
Yes — TensorFeed is a free science & space API. Free tier: Free — no key (static JSON feed endpoints). Whether the free tier allows commercial use is unclear — check the provider docs.
Does TensorFeed need an API key?
No — TensorFeed needs no API key or signup. You can call it straight away; rate limits still apply (120 req/window · 119 remaining · resets 60).
Can I call TensorFeed from the browser?
Yes — TensorFeed returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is TensorFeed up right now?
As of our last scheduled check, TensorFeed is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.