Get per-analyst price targets
GET
/api/v1/public/analyst/:ticker/price-targets3 credits / callAPI key required
The full per-analyst list of individual price targets for a ticker. Each entry carries the publishing firm, analyst, the target price, and the date it was set. Results are returned newest-first.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
Maximum number of price targets to return (1-200, default 50).
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/analyst/AAPL/price-targets?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/analyst/AAPL/price-targets?limit=10example · 200
{
"data": [
{
"symbol": "AAPL",
"publishedDate": "2026-06-09T12:28:00.000Z",
"analystName": "Tom Forte",
"analystCompany": "Maxim Group",
"priceTarget": 350,
"priceWhenPosted": 312.45
},
{
"symbol": "AAPL",
"publishedDate": "2026-06-09T09:26:00.000Z",
"analystName": "Erik Woodring",
"analystCompany": "Morgan Stanley",
"priceTarget": 325,
"priceWhenPosted": 311.2
}
]
}