What data is available
Every derived dataset is a canonical indicator with its ownindicatorId, queryable through the standard observation endpoints. Filter by the category to pull a whole family.
| Family | category | Example indicator IDs | What it tells you |
|---|---|---|---|
| Surprise indices | surprise | inflation_surprise_index, growth_surprise_index | How much recent data beat or missed expectations (standardized, in sigma). |
| COT positioning percentile | positioning | cot_positioning_percentile | A trader cohort’s net positioning as a historical percentile (0–100) — how stretched it is versus its own history. |
| Valuation multiples | valuation_multiples | trailing_pe_ratio, earnings_yield, dividend_yield, price_to_book_ratio, ev_to_ebitda_ratio, ev_to_sales_ratio, peg_ratio | Equity valuation derived from SEC fundamentals and price inputs, per company. |
| Rates analytics | rates | real_yield_10y, real_policy_rate, policy_cycle_state, yield_curve_spread_10y_2y, yield_10y_change | Real rates, curve measures, and policy-cycle state derived from policy rates and yields. |
| Risk-regime composite | risk | risk_regime | A composite signal summarizing the prevailing risk environment. |
The catalog is live. Resolve the full set of derived slugs and their categories from
GET /canonical-indicators (the same registry that lists macro indicators), and treat the examples above as a map rather than an exhaustive list.The forecast baseline
How derived analytics work
Financial Data API ingests official observations (CPI prints, yields, CFTC positioning) and SEC fundamentals, then a derivation step computes higher-level values and persists them as observations. Because the result is stored:- Reads are fast and stable. You retrieve a value; you do not trigger a computation on request.
- Each value is auditable. It carries the same
sourceUrl,provider, and provenance chain as any observation, and you can trace it to the official releases underneath viaGET /provenance/observations/{observationId}. - The product is read-only. You cannot pass your own formula or change the methodology; you read what Financial Data API has computed.
Derived values are served through the same observation endpoints as official data — there is no separate calculator API. Query them by
indicatorId or pull a whole family by category.Querying derived analytics
Send your API key on every request (x-api-key header or Authorization: Bearer); derived routes require the data:read scope. All paths are relative to https://api.financialdatapi.com.
Latest value of a derived series
A derived time series
Response
Units vary by family: surprise indices are in
sigma, COT percentiles in percentile, valuation multiples are a ratio (or percent for yields). Always branch on the unit field.Trace a derived value to its inputs
Because every derived value is an observation, it carries full provenance. You can walk from a derived value back to the official releases it was built on — this is what makes derived analytics auditable.Read the derived observation
Pull the derived value from
GET /observations (or /observations/latest) and capture its observationId.Notes
Stored, not computed on request
Stored, not computed on request
Derived values are precomputed and persisted. The number you read was computed earlier; the request does not recompute it. You cannot pass your own formula or change the methodology through the API.
Forecast baseline is not consensus
Forecast baseline is not consensus
The macro forecast baseline is Financial Data API’s own statistical baseline, published with prediction intervals and gated by out-of-sample skill. It is never a vendor, sell-side, or street consensus. Where consensus is available for surprise computation, it comes from the economic calendar and is a separate input.
Rights and exposure
Rights and exposure
Derived datasets follow the same rights model as the rest of the API, and trace to the same official provenance. Raw vendor and real-time market price-tick data is deliberately not part of the product and is never served on the public surface.
Related
Positioning
The raw CFTC COT and TFF series behind the positioning percentile.
Economic calendar and events
Where the consensus and forecast inputs behind surprise indices come from.
Macro indicators
The official observations that feed derived values, and how to query them.
Financial statements
The SEC fundamentals behind valuation multiples.

