Analyst Rating
https://api.unusualwhales.com/api/screener/analysts
Request
Authorization: Bearer <token>
Query Parameters
ticker
SingleTicker
optional
A single ticker
AAPL
limit
integer
optional
How many items to return. Default: 500, Max: 500, Min: 1
action
Analyst Action
optional
The action of the recommendation.
maintained
enum: initiated, reiterated, downgraded, upgraded, maintained
recommendation
Analyst Recommendation
optional
The recommendation the analyst gave out.
hold
enum: buy, hold, sell
newer_than
NewerThan
optional
The unix time in milliseconds or seconds at which no older results will be returned. Can be used with `older_than` to paginate by time. Also accepts an ISO date or RFC 3339 datetime (example: 2024-01-25).
1_715_083_417
older_than
OlderThan
optional
The unix time in milliseconds or seconds at which no newer results will be returned. Can be used with `newer_than` to paginate by time. Also accepts an ISO date or RFC 3339 datetime (example: 2024-01-25).
1_715_083_417
Responses
200 422 500Response Body 200 OK
action
Analyst Field Action
The action of the recommendation.
maintained
analyst_name
Analyst Field Name
The name of the analyst.
David Vogt
firm
Analyst Field Firm
The firm the analyst is working for.
UBS
recommendation
Analyst Field Recommendation
The recommendation the analyst gave out.
hold
sector
Market General Sector
The financial sector of the ticker. Empty if unknown or not applicable such as ETF/Index.
Technology
target
Analyst Field Target Price
The target price of the rating.
190.0
ticker
Analyst Sector
A financial sector.
timestamp
Analyst Field Time
The UTC timestamp, when the rating was released.
2023-09-08T12:21:10Z
curl -X GET "https://api.unusualwhales.com/api/screener/analysts" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
{
"data": [
{
"action": "maintained",
"analyst_name": "Tyler Radke",
"firm": "Citi",
"recommendation": "buy",
"sector": "Technology",
"target": "420.0",
"ticker": "MSFT",
"timestamp": "2023-09-11T11:21:12Z"
},
{
"action": "maintained",
"analyst_name": "Mark Rothschild",
"firm": "Canaccord Genuity",
"recommendation": "hold",
"sector": "Conglomerates",
"target": "11.75",
"ticker": "DRETF",
"timestamp": "2023-09-11T11:11:32Z"
}
]
}