Google Finance Scraper avatar

Google Finance Scraper

Pricing

from $1.99 / 1,000 google finance scraper results

Go to Apify Store
Google Finance Scraper

Google Finance Scraper

Scrapes source-backed Google Finance quote pages for exchange-qualified or bare symbols. Extracts display and numeric prices, quote statistics, company profiles, related stocks, news, analyst ratings, 12-month targets, analyst actions, URLs, and retrieval provenance.

Pricing

from $1.99 / 1,000 google finance scraper results

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

Scrapes source-backed Google Finance quote pages for exchange-qualified or bare symbols. Extracts display and numeric prices, quote statistics, company profiles, related stocks, news, analyst ratings, 12-month targets, analyst actions, URLs, and retrieval provenance.

What this Actor collects

The Actor converts Google Finance quote pages into one clean JSON record per requested symbol, including display and numeric prices, quote statistics, company profile, related securities, news, analyst ratings and actions, price targets, and retrieval provenance.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 95-field dataset schema.
  • Omits optional fields when the source does not expose a value instead of writing nulls or fabricated placeholders.

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. The Default / example column shows a schema default when one exists; otherwise it shows a documented prefill or fixture value.

FieldTypeRequiredDefault / exampleDescription
queriesarrayYes["AAPL"]List of stock ticker symbols to scrape (e.g. AAPL, GOOGL, MSFT). You can also use exchange-prefixed symbols like NASDAQ:AAPL or NSE:RELIANCE.
maxItemsintegerNo20Maximum number of results to scrape.
glstringNo"us"Two-letter Google country code used for localization and bare-symbol exchange preference.
hlstringNo"en"Google Finance interface language.
proxyConfigurationobjectNo{"useApifyProxy":false}Direct Google Finance HTML is the default. If it is blocked, use a residential or custom HTTPS proxy. The GOOGLE_SERP group does not support Finance quote routes and is automatically bypassed.

Example input

{
"queries": [
"AAPL",
"NYSE:IBM"
],
"maxItems": 3,
"proxyConfiguration": {
"useApifyProxy": false
},
"gl": "us",
"hl": "en"
}

Output

The default dataset contains one item per resolved market symbol. The following are the most useful fields; company, quote-statistic, news, and analyst fields depend on the instrument and the current Google Finance page.

FieldTypeDescription
positionintegerPosition
instrumentIdstringInstrument ID
companyNamestringCompany Name
pricestringPrice
currencystringCurrency
changestringChange
changePercentstringChange Percent
marketStatestringMarket State
marketCapstringMarket Cap
peRatiostringP/E Ratio
urlstringCanonical URL
scrapedAtstringScraped At
typestringType
titlestringTitle
namestringName
descriptionstringDescription

Example dataset item

This compact example is taken from local Actor storage. Long text and nested collections are shortened for documentation only.

{
"position": 1,
"instrumentId": "AAPL:NASDAQ",
"companyName": "Apple Inc",
"price": "$321.66",
"currency": "USD",
"change": "-4.23",
"changePercent": "-1.30%",
"marketState": "Closed",
"marketCap": "4.72T",
"peRatio": "38.91",
"url": "https://www.google.com/finance/beta/quote/AAPL:NASDAQ",
"scrapedAt": "2026-07-23T22:26:01.665Z"
}