Discover/GuruFocus API
live

GuruFocus APIgurufocus.com

Search stocks, retrieve price and market cap summaries, and track the latest buy/sell picks from investment gurus via the GuruFocus API.

Endpoint health
verified 6d ago
get_guru_latest_picks
search_stocks
get_stock_summary
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the GuruFocus API?

The GuruFocus API provides 3 endpoints covering stock search, individual stock summaries, and real-time guru investment picks. Use search_stocks to find equities and guru entities across global exchanges by ticker or company name, get_stock_summary to pull price, market cap, volume, and currency for a specific ticker, and get_guru_latest_picks to retrieve tracked gurus' most recent new buys, additions, reductions, and sold-out positions.

Try it
Stock ticker or company name to search for (e.g. 'AAPL', 'Microsoft').
api.parse.bot/scraper/8f896012-f0f1-429a-afe6-1f493f91db26/<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/8f896012-f0f1-429a-afe6-1f493f91db26/search_stocks?query=AAPL' \
  -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 gurufocus-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.

from parse_apis.gurufocus_financial_api import GuruFocus, Stock, SearchResult, GuruPick

client = GuruFocus()

# Get a stock by ticker symbol
apple = client.stocks.get(symbol="AAPL")
print(apple.symbol, apple.company, apple.price, apple.mktcap)

# Search for stocks and gurus matching a query
for result in client.stocks.search(query="Microsoft"):
    print(result.type, result.symbol, result.company, result.price)

# List latest guru investment picks
for pick in client.gurupicks.list():
    print(pick.guru_name, pick.firm, pick.new_buy, pick.add, pick.reduce)
All endpoints · 3 totalmissing one? ·

Full-text search across stocks and guru/ETF entities by ticker symbol or company name. Returns all matching results across multiple global exchanges. Each result is flattened with a type field ('stock' or 'guru') alongside the entity's fields (symbol, company, price, exchange, mktcap, volume for stocks; GuruName, firm, fundticker for gurus).

Input
ParamTypeDescription
queryrequiredstringStock ticker or company name to search for (e.g. 'AAPL', 'Microsoft').
Response
{
  "type": "object",
  "fields": {
    "data": "array of flattened search result objects with type field plus entity-specific fields"
  },
  "sample": {
    "data": {
      "data": [
        {
          "type": "stock",
          "price": 290.55,
          "mktcap": 4267411.286,
          "symbol": "AAPL",
          "volume": 47063383,
          "company": "Apple Inc",
          "stockid": "US01WD",
          "currency": "USD",
          "exchange": "NAS"
        },
        {
          "id": 25356,
          "firm": "Direxion Daily AAPL Bull 2X Shares",
          "type": "guru",
          "GuruName": "Direxion Daily AAPL Bull 2X Shares",
          "fundticker": "AAPU"
        }
      ]
    },
    "status": "success"
  }
}

About the GuruFocus API

Stock Search and Lookup

The search_stocks endpoint accepts a query string — either a ticker symbol like AAPL or a company name like Microsoft — and returns all matching entities across multiple global exchanges. Each result includes a type field that distinguishes between stock and guru or ETF entities, alongside fields such as symbol, company, price, and exchange. This is useful when you need to resolve a partial name to a canonical ticker before fetching deeper data.

Stock Summary Data

get_stock_summary takes a single case-insensitive ticker parameter and returns eight structured fields: price, mktcap (in millions), symbol, volume, company, stockid, currency, and exchange. If no exact ticker match exists, the endpoint returns an input_not_found signal rather than a partial result, so callers can handle missing tickers cleanly without parsing ambiguous responses.

Guru Investment Picks

get_guru_latest_picks requires no input parameters and returns the current global list of tracked guru activity. Each record in the picks array includes the guru's name, affiliated firm, the date of the activity, and four position-change fields: New Buy, Add, Reduce, and Sold Out. This gives a snapshot of what tracked investors are entering, building, trimming, or exiting across their portfolios at the time of the request.

Reliability & maintenanceVerified

The GuruFocus API is a managed, monitored endpoint for gurufocus.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gurufocus.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 gurufocus.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
6d ago
Latest check
3/3 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
  • Screen for stocks a specific guru recently added to their portfolio using get_guru_latest_picks Firm and Add fields
  • Resolve a partial company name to an exchange-listed ticker symbol with search_stocks before further analysis
  • Track market cap and trading volume for a watchlist of tickers using repeated get_stock_summary calls
  • Identify stocks multiple gurus are simultaneously exiting by aggregating Sold Out entries across the picks list
  • Build a currency-aware stock tracker by consuming the currency and exchange fields from get_stock_summary
  • Detect new institutional conviction signals by monitoring the New Buy field in get_guru_latest_picks
  • Distinguish ETF entities from individual equities in search results using the type field from search_stocks
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 GuruFocus have an official developer API?+
Yes. GuruFocus offers an official API at https://www.gurufocus.com/api.php, which requires a paid subscription and covers a broader range of financial data endpoints. The Parse API targets a focused subset: stock search, stock summaries, and guru picks.
What does `get_guru_latest_picks` return, and can I filter by a specific guru?+
The endpoint returns the current global list of tracked guru activity with no filtering by guru name or firm. Each record includes the guru's name, firm, date, and four position fields (New Buy, Add, Reduce, Sold Out). To narrow results to a single guru, filter the returned picks array client-side by the Guru Name field.
Does the API expose historical stock prices or time-series data?+
Not currently. The API covers current price, market cap, and volume via get_stock_summary, and current guru pick activity via get_guru_latest_picks. Historical price series and financial statement history are not included. You can fork the API on Parse and revise it to add the missing endpoint.
Does `get_stock_summary` cover stocks on non-US exchanges?+
Yes. The exchange and currency fields in the response reflect the stock's listed exchange, and search_stocks explicitly returns results across multiple global exchanges. Coverage depends on which tickers GuruFocus tracks, so tickers on smaller or regional exchanges may not return an exact match.
Is insider trading or politician trade data available through this API?+
Not currently. The API covers stock search, stock summaries, and guru investment picks. Insider transaction data and politician trading disclosures are not exposed by these three endpoints. You can fork the API on Parse and revise it to add the missing endpoint.
Page content last updated . Spec covers 3 endpoints from gurufocus.com.
Related APIs in FinanceSee all →
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.
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.
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.
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.
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.
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.
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.
features.financialjuice.com API
Get live financial news, economic calendar events, and in-depth articles to stay informed on market movements and economic indicators. Search and filter news by stock codes and calendar events to find the financial information most relevant to your trading or investment decisions.