Instrument Data
Get Instrument Analyst Consensus
Retrieves analyst ratings and price targets for an instrument.
get/v1/instruments/{instrument_id}/analyst-reporting
Path parameters
Instrument ID (UUID) or symbol (equity ticker or OSI option symbol).
Query parameters
fromstring date
The start date for the query range, inclusive (YYYY-MM-DD)
tostring date
The end date for the query range, inclusive (YYYY-MM-DD)
Response
Analyst consensus data
Example response
{
"error": {
"code": 400,
"message": "Order quantity must be greater than zero"
},
"data": {
"date": "2024-11-15",
"distribution": {
"buy": 28,
"hold": 6,
"sell": 2,
"strong_buy": 20,
"strong_sell": 0
},
"price_target": {
"average": "220.00",
"currency": "USD",
"high": "250.00",
"low": "180.00"
},
"rating": "STRONG_BUY"
}
}