Yahoo Finance Options Chain Scraper
Under maintenancePricing
Pay per usage
Yahoo Finance Options Chain Scraper
Under maintenanceScrapes 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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
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
strikenumeric 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.
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | array | Yes | ["AAPL"] | Array of stock ticker symbols to scrape options for (e.g. AAPL, MSFT, SPY). |
proxyConfiguration | object | No | — | Proxy 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.
| Field | Type | Description |
|---|---|---|
scrapedAt | string | Scraped At |
symbol | string | Ticker Symbol |
optionType | string | Option Type (Calls/Puts) |
strike | number | Strike Price |
lastPrice | string | Last Price |
change | string | Change |
bid | string | Bid |
ask | string | Ask |
volume | string | Volume |
openInterest | string | Open Interest |
impliedVolatility | string | Implied Volatility |
expirationDate | string | Expiration Date |
contractName | string | Contract 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"}