API Documentation

GET/api/1/equity-extended/price-target-history/{identifier}

Price Target History API

Returns historical analyst price target consensus over time for the given security. Up to 5 years of weekly snapshots including high, low, mean, median targets and analyst count.

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity-extended/price-target-history/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "last_updated": "2024-01-15T00:00:00.000Z",
  "target_high": 250,
  "target_low": 150,
  "target_mean": 200,
  "target_median": 195,
  "num_analysts": 38
}
]