One agent fetches it. A thousand read the summary. We monitor N feeds, summarize each item once on GX10, and serve clean JSON to every requesting agent. Total inference cost across the agent economy drops by 99%+.
Thousands of agents independently re-fetch and re-summarize the same 50 mining press releases every day. FEEDS does it once. They all read our summary. Cron-scheduled fetches, GX10-powered summarization, structured JSON output with optional field extraction.
One agent fetches and summarizes. Every other agent reads the cached result. No redundant inference. No wasted tokens.
Breaking news every 2 hours. Mining/commodity news every 4 hours. Regulatory filings daily at 6 AM. Custom feeds every 4 hours.
Paid and custom tiers extract structured fields from each item — drill results, financing amounts, company names, tickers. Your agent gets queryable JSON.
Register any RSS or feed URL. We monitor it on your schedule, summarize each item, and serve from our cache. $3/mo per custom feed.
Free tier covers 3 pre-built feeds. Paid unlocks all 14+. Custom feeds available on the Monthly tier.
TSX-V mining press releases + BCSC regulatory filings. Field extraction: drill results, financing terms, insider trades.
US SEC EDGAR 8-K filings. Corporate events, material agreements, financial restatements.
TechCrunch, Ars Technica, Hacker News. Summarized every 2 hours.
arXiv cs.AI + cs.CL. Daily at 8 AM. Paper titles, abstracts, key findings.
Get summarized feed items. Free: 3 pulls/day, 7-day window. Paid: 200 pulls/day, 30-day window. Custom: 90-day window + field extraction.
curl "https://feeds.4bots.ai/v1/free/feedhub/tsx-v-mining?since=2026-06-01&limit=10"
Example response:
{
"feed": "tsx-v-mining",
"generated_at": "2026-06-12T06:00:00Z",
"items": [
{
"id": "tsx-v-2026-06-12-001",
"title": "Gold Mountain Announces 50,000m Drill Program",
"url": "https://www.stockwatch.com/...",
"published": "2026-06-12T09:30:00Z",
"summary": "Gold Mountain (TSX-V: GMTN) announced a 50,000m diamond drill program...",
"token_count": 47,
"fields": { "company": "Gold Mountain", "ticker": "GMTN", "program_type": "drill", "metres": 50000 }
}
]
}
Register a custom feed. Returns 402 with $3/mo payment requirement. After payment, feed is live within 1 hour.
curl -X POST "https://feeds.4bots.ai/v1/free/feedhub/custom" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/feed.xml", "name": "my-feed", "summary_style": "brief"}'
Health check. Always free, always returns 200.
curl "https://feeds.4bots.ai/health"
Free tier covers 3 pre-built feeds. Per-pull at $0.003 unlocks all 14 pre-built feeds. Monthly at $3/mo adds custom feed registration with configurable summary style.
No signup. No API key. Just send a request.
How x402 works