tipranks.com APItipranks.com ↗
Access TipRanks Smart Score rankings, analyst price targets, consensus ratings, and earnings movement data for any stock ticker via two REST endpoints.
curl -X GET 'https://api.parse.bot/scraper/a2951930-9eb9-44e7-b2c4-dbd5d8d14074/get_best_stocks?limit=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the best stocks according to TipRanks Smart Score sorted by upside potential. Returns detailed analyst ratings and significant earnings movements (>6% price move) for each stock.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of top stocks to return. |
{
"type": "object",
"fields": {
"data": "array of stock objects with Ticker, Company, Smart Score, Current Price, Consensus Upside %, Analyst Detailed Ratings, and Earnings Reports (>6% Move)",
"status": "string - always 'success'"
},
"sample": {
"data": [
{
"Ticker": "ZHAOF",
"Company": "Zhaojin Mining Industry Co",
"Smart Score": 10,
"Current Price": 4.27,
"Consensus Upside %": null,
"Analyst Detailed Ratings": [
{
"Date": "2025-08-28",
"Action": "reiterated",
"Position": "buy",
"Expert Firm": "Macquarie",
"Price Target": 3.32,
"Analyst Profile": "Peter Li CFA",
"Upside / Downside": -22.24
}
],
"Earnings Reports (>6% Move)": [
{
"Date": "2024-04-12",
"Movement %": 6.63,
"Estimate EPS": 0.0103,
"Reported EPS": 0.0103
}
]
}
],
"status": "success"
}
}About the tipranks.com API
The TipRanks API exposes two endpoints that return analyst consensus data, Smart Score rankings, individual analyst price targets, and earnings reports that triggered price moves greater than 6%. Use get_best_stocks to pull a ranked list of top-scoring stocks with upside percentages, or get_stock_info to query a specific ticker for full analyst breakdowns and company fundamentals.
Endpoints and Core Data
The get_best_stocks endpoint returns an array of stock objects sorted by consensus upside potential. Each object includes the stock's Ticker, Company name, Smart Score, Current Price, Consensus Upside %, Analyst Detailed Ratings, and an Earnings field that flags significant price movements. An optional limit parameter controls how many results are returned, useful for building a focused watchlist or screener view.
Per-Ticker Detail
The get_stock_info endpoint accepts a ticker parameter (e.g. AAPL, TSLA, MSFT) and returns a single object with deeper detail: individual analyst price targets, buy/hold/sell breakdown, Company Info, Current Price, Consensus rating, and Earnings Reports filtered to moves greater than 6%. This makes it practical for evaluating a specific holding or validating a trade idea against the analyst consensus before acting.
Coverage and Freshness
Both endpoints reflect TipRanks' aggregated analyst data, which consolidates ratings across sell-side analysts tracked by TipRanks. The Earnings Reports field specifically surfaces historical earnings events that caused meaningful price dislocations, giving context for how a stock reacts to earnings beats and misses. Coverage is limited to equities tracked by TipRanks; not all global exchanges or micro-cap names will be present.
- Build a daily screener that surfaces the highest Smart Score stocks with the largest consensus upside.
- Aggregate analyst buy/hold/sell ratios across a portfolio of tickers using
get_stock_info. - Flag earnings dates where a stock historically moved more than 6% to inform options strategy.
- Display consensus price targets alongside current price for a stock comparison tool.
- Monitor changes in analyst detailed ratings for a watchlist of tickers over time.
- Enrich a portfolio tracker with TipRanks Smart Scores pulled via
get_best_stocks. - Research a single stock's analyst coverage depth and price target spread before a position.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.