Discover/Fool API
live

Fool APIfool.com

Access Motley Fool stock data, OHLCV historical prices, analyst opinions, and full earnings call transcripts via 4 structured API endpoints.

Endpoint health
verified 4d ago
get_stock_data
get_historical_prices
get_transcript_details
search_stocks
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Fool API?

The Motley Fool API provides 4 endpoints covering stock lookup, historical OHLCV price bars, analyst opinions, and complete earnings call transcripts sourced from fool.com. Starting with get_stock_data or search_stocks, you retrieve a symbol's instrument ID and linked articles, then feed that ID into get_historical_prices to pull chart data across timeframes from one week to the full available history.

Try it
Stock ticker symbol (e.g. AAPL, TSLA, MSFT)
api.parse.bot/scraper/5488de9f-9850-451f-9ce5-6f1edcb43528/<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/5488de9f-9850-451f-9ce5-6f1edcb43528/get_stock_data?symbol=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 fool-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.motley_fool_financial_api import MFool, Timeframe, Precision, TranscriptNotFound

client = MFool()

# Get stock data for Apple
stock = client.stocks.get(symbol="AAPL")
print(stock.symbol, stock.instrument_id)

# Check analyst opinions
if stock.analyst_opinions:
    print(stock.analyst_opinions.source, stock.analyst_opinions.rating)

# Browse recent articles
for article in stock.articles:
    print(article.title, article.url)

# Fetch historical prices with enum-typed timeframe and precision
for bar in stock.prices.list(timeframe=Timeframe.ONE_YEAR, precision=Precision.DAY):
    print(bar.pricing_date, bar.close.amount, bar.volume)

# Get transcript details from a transcript summary
for ts in stock.transcripts:
    transcript = ts.details()
    print(transcript.title, transcript.paragraph_count)
    for speaker in transcript.unique_speakers:
        print(speaker)

# Search for a stock by query
msft = client.stocks.search(query="MSFT")
print(msft.symbol, msft.instrument_id)
All endpoints · 4 totalmissing one? ·

Get basic stock info, instrument ID, articles, and analyst opinions for a given stock symbol. Returns recent articles from the quote page and Motley Fool analyst opinions when available. The instrument_id in the response is required for fetching historical prices via the get_historical_prices endpoint.

Input
ParamTypeDescription
symbolrequiredstringStock ticker symbol (e.g. AAPL, TSLA, MSFT)
Response
{
  "type": "object",
  "fields": {
    "symbol": "string — stock ticker symbol",
    "articles": "array of article objects with title, url, and path",
    "transcripts": "array of transcript objects with title, url, and path (may be empty)",
    "instrument_id": "integer — internal instrument ID for use with get_historical_prices, or null if not found",
    "analyst_opinions": "object with source and rating fields when available"
  },
  "sample": {
    "data": {
      "symbol": "AAPL",
      "articles": [
        {
          "url": "https://www.fool.com/investing/2026/06/09/why-apple-stock-is-sinking-today/",
          "path": "/investing/2026/06/09/why-apple-stock-is-sinking-today/",
          "title": "Why Apple Stock Is Sinking Today"
        }
      ],
      "transcripts": [],
      "instrument_id": 202686,
      "analyst_opinions": {
        "rating": "Buy",
        "source": "Motley Fool Stock Advisor"
      }
    },
    "status": "success"
  }
}

About the Fool API

Stock Lookup and Analyst Opinions

get_stock_data and search_stocks both accept a ticker symbol (e.g. AAPL, TSLA) and return the same response shape: a symbol string, an instrument_id integer, an articles array of objects with title, url, and path, a transcripts array with the same structure, and an analyst_opinions object containing source and rating fields when Motley Fool has published a rating for that stock. The instrument_id field is required by the historical prices endpoint, so stock lookup is typically the first step in any workflow.

Historical Price Data

get_historical_prices accepts a numeric instrument_id string, an optional precision parameter (Day, Hour, or Minute), and an optional timeframe parameter (OneWeek, OneMonth, OneYear, FiveYears, or Max). It returns a ChartBars array where each bar object includes PricingDate, Open, Close, High, Low, and Volume. The response also includes company-level metadata: Name, Symbol, a Currency object (Id, Name, Symbol), and an Exchange object (Id, Name, Symbol). Note that some instrument and timeframe combinations may return no data if the source does not have coverage for that range.

Earnings Call Transcripts

get_transcript_details fetches the full content of an earnings call transcript using a path parameter — the URL path on fool.com, such as /earnings/call-transcripts/2026/01/29/apple-aapl-q1-2026-earnings. The response includes the full_text string with paragraphs separated by newlines, a takeaways array of key bullet points extracted from the transcript, a paragraph_count integer, and a unique_speakers array listing identified speaker names. Transcript paths can be discovered from the transcripts array returned by get_stock_data. If the path is invalid, the endpoint returns a stale_input error with kind input_not_found.

Reliability & maintenanceVerified

The Fool API is a managed, monitored endpoint for fool.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fool.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 fool.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
4/4 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 charting tool using OHLCV ChartBars data from get_historical_prices across daily, hourly, or minute precision
  • Aggregate Motley Fool analyst rating fields across a portfolio of tickers to track buy/sell/hold sentiment
  • Extract unique_speakers and full_text from earnings call transcripts for NLP analysis or summarization
  • Index the articles array from get_stock_data to surface Motley Fool editorial coverage for a given stock
  • Pull takeaways arrays from multiple transcripts to compare management commentary across quarters
  • Seed a stock research dashboard with instrument metadata including Exchange and Currency details from historical price responses
  • Discover recent earnings call transcript paths via transcripts array, then fetch full content with get_transcript_details
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 Motley Fool have an official public developer API?+
Motley Fool does not publish an official public developer API for the data available through this service. This Parse API surfaces stock data, historical prices, analyst opinions, and transcript content without requiring a Motley Fool developer account.
What does the `analyst_opinions` field actually contain?+
It is an object with two fields: source (identifying the opinion source, typically Motley Fool) and rating (the published rating for the stock, such as a buy or outperform designation). This field appears only when a Motley Fool analyst opinion is available for the queried symbol; it is absent for stocks without published ratings.
Are intraday or real-time price quotes available?+
The get_historical_prices endpoint returns historical OHLCV bars and supports sub-day precision via the Hour and Minute options, but it does not return a live streaming price or a current bid/ask quote. You can fork this API on Parse and revise it to add a real-time quote endpoint if that data becomes accessible.
Does the API cover analyst price targets or earnings estimates?+
Not currently. The API covers analyst opinions (source and rating), historical OHLCV prices, earnings transcript text, and article metadata. Price targets, earnings-per-share estimates, and revenue forecasts are not included in any endpoint response. You can fork this API on Parse and revise it to add an endpoint targeting that data.
What happens if a transcript path passed to `get_transcript_details` is invalid?+
The endpoint returns a stale_input error with kind input_not_found. Valid transcript paths are available in the transcripts array returned by get_stock_data or search_stocks, making those endpoints the reliable way to discover accessible transcript paths for a given ticker.
Page content last updated . Spec covers 4 endpoints from fool.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.
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.
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.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
gurufocus.com API
Access comprehensive financial insights by retrieving article URLs, stock summaries, politician trading activities, and guru investment picks from GuruFocus in one place. Search stocks and discover the latest expert recommendations and news coverage tied to your investments of interest.
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.
tipranks.com API
Discover top-performing stocks and access detailed analyst ratings and earnings forecasts to make informed investment decisions. Get real-time stock information including performance metrics and expert analyst opinions all in one place.