Discover/TipRanks API
live

TipRanks APItipranks.com

Access TipRanks Smart Score rankings, analyst price targets, consensus ratings, and earnings movement data for any stock ticker via two REST endpoints.

Endpoint health
verified 4d ago
get_stock_info
get_best_stocks
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the TipRanks 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.

Try it
Maximum number of top stocks to return.
api.parse.bot/scraper/a2951930-9eb9-44e7-b2c4-dbd5d8d14074/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace tipranks-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: TipRanks SDK — discover top stocks, drill into detail, handle errors."""
from parse_apis.tipranks_stock_analysis_api import TipRanks, TickerNotFound

client = TipRanks()

# List top-scored stocks, capped at 3 items total.
for summary in client.stocksummaries.top(limit=3):
    print(summary.ticker, summary.company, summary.smart_score)

# Drill into the first result for full detail.
first = client.stocksummaries.top(limit=1).first()
if first:
    stock = first.details()
    print(stock.company, stock.current_price)
    print(stock.consensus.buy, stock.consensus.hold, stock.consensus.sell)
    for rating in stock.analyst_detailed_ratings[:2]:
        print(rating.analyst_profile, rating.expert_firm, rating.price_target)

# Direct fetch by ticker via the stocks collection.
try:
    apple = client.stocks.get(ticker="AAPL")
    print(apple.company_info.sector, apple.company_info.industry)
except TickerNotFound as exc:
    print(f"Ticker not found: {exc.ticker}")

print("exercised: stocksummaries.top / details / stocks.get / error handling")
All endpoints · 2 totalmissing one? ·

Fetches top stocks ranked by TipRanks Smart Score and sorted by consensus upside potential. Each stock includes analyst detailed ratings (name, firm, price target, action) and earnings reports that caused greater than 6% price movement. The screener data refreshes periodically; results reflect TipRanks' current top-scored universe. Returns a single page capped by limit.

Input
ParamTypeDescription
limitintegerMaximum number of top stocks to return.
Response
{
  "type": "object",
  "fields": {
    "items": "array of stock summary objects each containing Ticker, Company, Smart Score, Current Price, Consensus Upside %, Analyst Detailed Ratings, and Earnings Reports (>6% Move)"
  },
  "sample": {
    "data": {
      "items": [
        {
          "Ticker": "TCTZF",
          "Company": "Tencent Holdings",
          "Smart Score": 10,
          "Current Price": 57.46,
          "Consensus Upside %": null,
          "Analyst Detailed Ratings": [
            {
              "Date": "2025-08-13",
              "Action": "reiterated",
              "Position": "buy",
              "Expert Firm": "US Tiger Securities",
              "Price Target": 82.34,
              "Analyst Profile": "Bo Pei CFA",
              "Upside / Downside": 43.31
            }
          ],
          "Earnings Reports (>6% Move)": [
            {
              "Date": "2025-08-13",
              "Movement %": 7.77,
              "Estimate EPS": 0.96,
              "Reported EPS": 1
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the TipRanks API

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.

Reliability & maintenanceVerified

The TipRanks API is a managed, monitored endpoint for tipranks.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tipranks.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official tipranks.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does TipRanks offer an official developer API?+
TipRanks does offer a data product for institutional clients (tipranks.com/research), but it is not a self-serve public API with open signup. This Parse API provides structured access to analyst ratings, Smart Scores, and earnings data without requiring an institutional agreement.
What does the Earnings field in `get_best_stocks` actually contain?+
It contains earnings events where the stock moved more than 6% in price — both beats and misses that caused significant reactions. It is a filtered set, not a complete earnings calendar. Events that caused smaller movements are excluded.
Does the API cover analyst ratings for international stocks or ETFs?+
Coverage reflects U.S.-listed equities tracked by TipRanks. International stocks and ETFs are not currently surfaced by these endpoints. You can fork this API on Parse and revise it to add endpoints targeting those asset classes if TipRanks carries the underlying data.
Can I retrieve historical Smart Score changes for a ticker over time?+
Not currently. Both endpoints return the current Smart Score snapshot, not a time series. You can fork this API on Parse and revise it to add a historical tracking endpoint that stores and diffs successive responses.
How granular are the Analyst Detailed Ratings returned by `get_stock_info`?+
The response includes individual analyst price targets and their buy/hold/sell ratings within the Analyst Detailed Ratings field. It does not include analyst firm revenue estimates, EPS projections, or sector-level commentary — those fields are not part of the current response shape.
Page content last updated . Spec covers 2 endpoints from tipranks.com.
Related APIs in FinanceSee all →
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
stocktwits.com API
Discover which stocks are generating the most buzz on Stocktwits by accessing real-time trending symbols along with company names, trending scores, current price data, and community sentiment summaries. Stay ahead of market conversations by monitoring what the investing community is actively discussing and trading.
morningstar.in API
Access mutual fund and stock data from Morningstar India. Search by name or ticker, then retrieve NAV, expense ratios, star ratings, historical performance, asset allocation, portfolio holdings, risk metrics, and analyst pillar ratings for any covered fund.
fool.com API
Access real-time stock data, historical price trends, analyst opinions, and complete earnings call transcripts from Motley Fool to research and analyze investment opportunities. Search stocks and retrieve detailed financial information to make informed investment decisions.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.