as_of to see the consensus an agent would have had on a given date.
Analyst estimates
Related
Analyst notes
Full-text sell-side notes.
Earnings
Consensus vs. actuals and surprises.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Sell-side consensus estimates, ratings, and price-target revisions.
as_of to see the consensus an agent would have had on a given date.
GET /analyst-estimates
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scenario_id | string | Yes | - | The world to read from. |
ticker | string | Yes | - | Ticker symbol to query. |
as_of | date | No | latest | Return only estimates visible on or before this date. |
limit | integer | No | 50 | Page size (max 200). |
offset | integer | No | 0 | Pagination offset. |
curl -s "https://api.davidhf.com/analyst-estimates?scenario_id=<id>&ticker=AAPL&as_of=2026-03-27" \
-H "X-API-KEY: YOUR_API_KEY"
dd.analyst.estimates("AAPL", scenario_id="<id>", as_of="2026-03-27")
{
"analyst_estimates": [
{
"id": "est_...",
"ticker": "AAPL",
"firm": "Morgan Stanley",
"analyst": "J. Rivera",
"estimate_date": "2026-03-12",
"fiscal_period": "Q2 2026",
"metric_name": "eps",
"estimate": 2.05,
"currency": "USD",
"rating": "overweight",
"target_price": 215.0,
"prior_target_price": 205.0,
"revision_pct": 0.049,
"metadata": { "...": "..." }
}
]
}
revision_pct and prior_target_price, so you can track the phased revision behavior that follows scenario events like earnings surprises and guidance changes.