Yahoo Finance Options Chain Scraper avatar

Yahoo Finance Options Chain Scraper

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Yahoo Finance Options Chain Scraper

Yahoo Finance Options Chain Scraper

Under maintenance

Scrapes Yahoo Finance options chain data including calls and puts with strike prices, bid/ask, volume, open interest, and implied volatility.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrapes Yahoo Finance options chain data including calls and puts with strike prices, bid/ask, volume, open interest, and implied volatility.

What this Actor collects

The Actor creates one record per option contract for each requested ticker, covering both calls and puts returned by Yahoo Finance.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 13-field dataset schema.
  • Preserves source-formatted quote values while keeping strike numeric for analysis.

Use cases

  • Market and company research
  • Price, fundamentals, earnings, or derivatives monitoring
  • Structured inputs for financial analysis

Input

Provide input in JSON. Fields marked required must be supplied; source-specific alternatives and constraints are described in the field text.

FieldTypeRequiredDefaultDescription
symbolsarrayYes["AAPL"]Array of stock ticker symbols to scrape options for (e.g. AAPL, MSFT, SPY).
proxyConfigurationobjectNoProxy settings.

Example input

{
"symbols": [
"AAPL",
"SPY"
],
"proxyConfiguration": {
"useApifyProxy": false
}
}

Output

The default dataset contains one item per option contract. optionType identifies a call or put, and expirationDate identifies the chain expiry.

FieldTypeDescription
scrapedAtstringScraped At
symbolstringTicker Symbol
optionTypestringOption Type (Calls/Puts)
strikenumberStrike Price
lastPricestringLast Price
changestringChange
bidstringBid
askstringAsk
volumestringVolume
openIntereststringOpen Interest
impliedVolatilitystringImplied Volatility
expirationDatestringExpiration Date
contractNamestringContract Name

Example dataset item

This compact example is a subset of one item in local Actor storage; every displayed value is unmodified.

{
"scrapedAt": "2026-07-23T12:29:46.354Z",
"symbol": "AAPL",
"optionType": "call",
"strike": 110,
"lastPrice": "208.95",
"change": "0.00",
"bid": "0.00",
"ask": "0.00",
"volume": "1",
"openInterest": "1",
"impliedVolatility": "0.00%",
"expirationDate": "2026-07-24"
}