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 LLM-Ready EIA Series

1 credit
GET /api/premium/clean/eia/series

EIA Open Data series in LLM-ready format. Sorted-ascending numeric points, extracted primary_units, and derived month-over-month + year-over-year delta percentages computed against valid (non-null) observations. The deltas are usually the whole reason an agent is asking.

When to use this endpoint

When an agent needs "is this trending up or down?" without writing time-series math. Free /api/economy/eia/series returns raw points; this returns deltas.

Parameters

NameInTypeDescription
route*querystringEIA route (petroleum/pri/spt, electricity/retail-sales, etc.)e.g. petroleum/pri/spt
frequencyquerystringdaily | monthly | annuale.g. monthly
startquerystringStart date in frequency-matched format (YYYY, YYYY-MM, or YYYY-MM-DD)e.g. 2025-01
endquerystringEnd datee.g. 2026-04
lengthquerynumberMax records (1-5000)e.g. 20

* required

Example response

{ "ok": true, "source_format": "eia_v2_envelope", "target_format": "tensorfeed_llm_ready_v1", "data": { "primary_units": "$/Mcf", "points": [{ "period": "2026-04", "value": 2.85, "mom_pct": 1.8, "yoy_pct": -12.4 }] }, "compression_stats": { "reduction_pct": 64 }, "billing": { "credits_charged": 1, "credits_remaining": 49 } }

Code samples

Python SDK

tf._get("/premium/clean/eia/series", route="petroleum/pri/spt", frequency="daily")

TypeScript SDK

await fetch("https://tensorfeed.ai/api/premium/clean/eia/series?route=petroleum/pri/spt&frequency=daily", { headers: { Authorization: "Bearer tf_live_..." } });

FAQ

Why do MoM/YoY deltas matter?

Almost every agent asking about an economic indicator wants to know "is it changing." Pre-computing the deltas saves them the math and the parsing of the upstream EIA response shape.

Related endpoints