Yahoo Finance avatar

Yahoo Finance

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Yahoo Finance

Yahoo Finance

This API retrieves data from yahoo finance, such as stocks, future and much more with detailed information.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Pinto Studio

Pinto Studio

Maintained by Community

Actor stats

3

Bookmarked

37

Total users

1

Monthly active users

14 days ago

Last modified

Categories

Share

Yahoo Finance Stock Quote API

This Actor retrieves a real-time stock quote from Yahoo Finance for any ticker symbol — price, day range, 52-week range, market cap, valuation ratios, analyst rating, and earnings-date info in a single call.

Features

  • Ticker Information Retrieval - Obtain a comprehensive real-time quote for any ticker.
  • Price Tracking - Regular market price, change, bid/ask, and intraday/52-week range.
  • Valuation Metrics - Market cap, P/E (forward and trailing), EPS, book value, price-to-book.
  • Moving Averages - 50-day and 200-day averages with change vs. current price.
  • Analyst & Earnings - Average analyst rating and next earnings date (with estimate flag).
  • Dividends - Trailing annual dividend rate and yield, where applicable.

Input

FieldTypeDescription
tickerStringThe stock ticker symbol to look up, e.g. TSLA, AAPL, MSFT.
{
"ticker": "TSLA"
}

Output Format

Each run returns one dataset item: the full Yahoo Finance quote object for the requested ticker (around 80 fields). Key groups of fields:

  • Identitysymbol, shortName, longName, displayName, quoteType, exchange, fullExchangeName, currency
  • Live pricingregularMarketPrice, regularMarketChange, regularMarketChangePercent, regularMarketDayRange, bid, ask, bidSize, askSize, marketState
  • Range & averagesfiftyTwoWeekRange, fiftyDayAverage, twoHundredDayAverage
  • VolumeregularMarketVolume, averageDailyVolume3Month, averageDailyVolume10Day
  • ValuationmarketCap, sharesOutstanding, bookValue, priceToBook, forwardPE, trailingPE, epsForward, epsTrailingTwelveMonths
  • Analyst & earningsaverageAnalystRating, earningsTimestamp, isEarningsDateEstimate
  • DividendstrailingAnnualDividendRate, trailingAnnualDividendYield
  • Corporate actionscorporateActions (upcoming splits/dividends; usually an empty array)

Not every field is populated for every instrument — non-equity tickers (ETFs, indices, crypto) omit fields like epsForward or averageAnalystRating that don't apply to them.

Output Example

Trimmed to the most useful fields from a real run on TSLA (the full item returns ~80 fields):

{
"symbol": "TSLA",
"shortName": "Tesla, Inc.",
"longName": "Tesla, Inc.",
"quoteType": "EQUITY",
"exchange": "NMS",
"fullExchangeName": "NasdaqGS",
"currency": "USD",
"marketState": "REGULAR",
"regularMarketPrice": 345.79,
"regularMarketChange": -9.019989,
"regularMarketChangePercent": -2.542217,
"regularMarketDayRange": { "low": 345.2, "high": 358.8 },
"regularMarketVolume": 23549856,
"bid": 346.6,
"ask": 347.88,
"marketCap": 1365714010112,
"sharesOutstanding": 3949547394,
"bookValue": 21.995,
"priceToBook": 15.7213,
"epsTrailingTwelveMonths": 1.06,
"epsForward": 2.15858,
"forwardPE": 160.19327,
"trailingPE": 326.217,
"averageAnalystRating": "2.3 - Buy",
"fiftyDayAverage": 361.4264,
"twoHundredDayAverage": 401.41074,
"fiftyTwoWeekRange": { "low": 297.38, "high": 498.83 },
"averageDailyVolume3Month": 41471814,
"trailingAnnualDividendYield": 0,
"earningsTimestamp": "2026-07-22T20:00:00.000Z",
"isEarningsDateEstimate": true
}

How to Use

  1. Provide the ticker symbol as input (see Input above).
  2. Run the Actor — it returns one dataset item containing the full quote.
  3. Pull the fields you need from the Output Format list above, or grab everything.

Use Cases

  • Building a lightweight stock-price dashboard or watchlist
  • Feeding a portfolio tracker with live price and valuation data
  • Screening tickers by valuation ratios (P/E, price-to-book) or analyst rating
  • Monitoring upcoming earnings dates across a list of symbols