Premium CVE Range
1 creditGET /api/premium/security/cve/rangeReturns 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
| Name | In | Type | Description |
|---|---|---|---|
| from* | query | string | Start date YYYY-MM-DDe.g. 2026-05-01 |
| to* | query | string | End 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.