LIVE
OPUS 4.7$15 / $75per Mtok
SONNET 4.6$3 / $15per Mtok
GPT-5.5$10 / $30per Mtok
GEMINI 3.1$3.50 / $10.50per Mtok
SWE-BENCHleader Claude Opus 4.772.1%
MMLU-PROleader Opus 4.788.4
VALS FINANCEleader Opus 4.764.4%
AFTAv1.0 whitepaper live at /whitepaper
OPUS 4.7$15 / $75per Mtok
SONNET 4.6$3 / $15per Mtok
GPT-5.5$10 / $30per Mtok
GEMINI 3.1$3.50 / $10.50per Mtok
SWE-BENCHleader Claude Opus 4.772.1%
MMLU-PROleader Opus 4.788.4
VALS FINANCEleader Opus 4.764.4%
AFTAv1.0 whitepaper live at /whitepaper
All systems operational0 AI providers monitored, polled every 2 minutes
Live status
All endpoints

Premium CVE Range

1 credit
GET /api/premium/security/cve/range

Returns the full CVE-ID set captured by the daily MITRE cron across a date range, indexed by day. Pair with /api/security/cve/{id} for the per-CVE record. Range capped at 30 days per call.

When to use this endpoint

When an agent needs every CVE that landed in a window, e.g. for SIEM ingest, vendor advisory roundups, or vuln-scanner backfill. Free /api/security/cve/recent only returns most-recent.

Parameters

NameInTypeDescription
from*querystringStart date YYYY-MM-DDe.g. 2026-05-01
to*querystringEnd date YYYY-MM-DD (max 30 days from `from`)e.g. 2026-05-09

* required

Example response

{ "ok": true, "range": { "from": "2026-05-01", "to": "2026-05-09" }, "by_date": { "2026-05-08": ["CVE-2026-42208", "CVE-2026-42209"] }, "total_cves": 1573, "billing": { "credits_charged": 1, "credits_remaining": 49 } }

Code samples

Python SDK

tf._get("/premium/security/cve/range", **{"from":"2026-05-01","to":"2026-05-09"})

TypeScript SDK

await fetch("https://tensorfeed.ai/api/premium/security/cve/range?from=2026-05-01&to=2026-05-09", { headers: { Authorization: "Bearer tf_live_..." } });

FAQ

What if the range exceeds 30 days?

Returns 400. Issue multiple smaller-range calls to span longer windows.

License?

MITRE CVE Terms of Use, commercial redistribution permitted. Attribution included on every response.

Related endpoints