# Yahoo Finance Stocks Scraper (`searchapi/yahoo-finance-stocks-scraper`) Actor

Scrapes Yahoo Finance stock quote pages for price, change, company profile, market data, and key statistics.

- **URL**: https://apify.com/searchapi/yahoo-finance-stocks-scraper.md
- **Developed by:** [Search API](https://apify.com/searchapi) (community)
- **Categories:** Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Yahoo Finance Stocks Scraper

Scrapes Yahoo Finance stock quote pages for price, change, company profile, market data, and key statistics.

### What this Actor collects

The Actor creates one quote record per requested ticker, combining current price data with the company and key-statistics fields Yahoo exposes.

- Uses the input limits and filters below to control the crawl.
- Stores source-backed fields defined by the 27-field dataset schema.
- Fields unavailable on a particular quote page may be omitted; the Actor does not invent company or market values.

### 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 (e.g. AAPL, MSFT, GOOGL). |
| `proxyConfiguration` | object | No | — | Proxy settings. |

#### Example input

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

### Output

The default dataset contains one item per requested ticker. Current price and change fields are numeric; many quote-table values remain source-formatted strings.

| Field | Type | Description |
| --- | --- | --- |
| `description` | string | Description |
| `scrapedAt` | string | Scraped At |
| `symbol` | string | Ticker Symbol |
| `currency` | string | Currency |
| `companyName` | string | Company Name |
| `price` | number | Current Price |
| `change` | number | Price Change |
| `changePercent` | number | Change % |
| `previousClose` | number | Previous Close |
| `open` | number | Open |
| `bid` | string | Bid |
| `ask` | string | Ask |
| `daysRange` | string | Day's Range |
| `fiftyTwoWeekRange` | string | 52 Week Range |
| `volume` | string | Volume |
| `avgVolume` | string | Avg Volume |

<details>
<summary>All 27 declared dataset fields</summary>

`symbol`, `currency`, `companyName`, `price`, `change`, `changePercent`, `previousClose`, `open`, `bid`, `ask`
`daysRange`, `fiftyTwoWeekRange`, `volume`, `avgVolume`, `marketCap`, `beta`, `peRatio`, `eps`, `earningsDate`, `dividendYield`
`exDividendDate`, `oneYearTarget`, `sector`, `industry`, `employees`, `description`, `scrapedAt`

</details>

#### Example dataset item

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

```json
{
  "scrapedAt": "2026-07-23T12:29:56.290Z",
  "symbol": "AAPL",
  "currency": "USD",
  "companyName": "Apple Inc.",
  "price": 325.89,
  "change": -1.85,
  "changePercent": -0.56,
  "previousClose": "327.74",
  "open": "327.88",
  "bid": "323.03 x 400",
  "ask": "325.97 x 400",
  "daysRange": "323.34 - 329.00"
}
```

### Related Actors

- [Yahoo Finance Earnings Calendar Scraper](https://apify.com/searchapi/yahoo-finance-earnings-scraper)
- [Yahoo Finance Options Chain Scraper](https://apify.com/searchapi/yahoo-finance-options-scraper)
- [Yahoo Images Scraper](https://apify.com/searchapi/yahoo-images-scraper)

# Actor input Schema

## `symbols` (type: `array`):

Array of stock ticker symbols to scrape (e.g. AAPL, MSFT, GOOGL).

## `proxyConfiguration` (type: `object`):

Proxy settings.

## Actor input object example

```json
{
  "symbols": [
    "AAPL",
    "MSFT",
    "GOOGL"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Dataset schema for yahoo-finance-stocks-scraper

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "symbols": [
        "AAPL",
        "MSFT",
        "GOOGL"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("searchapi/yahoo-finance-stocks-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "symbols": [
        "AAPL",
        "MSFT",
        "GOOGL",
    ],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("searchapi/yahoo-finance-stocks-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "symbols": [
    "AAPL",
    "MSFT",
    "GOOGL"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call searchapi/yahoo-finance-stocks-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=searchapi/yahoo-finance-stocks-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/YgffsTCarq3Rf6eBs/builds/mp3Rx4nnRVu3RlFjO/openapi.json
