scraper
Back to API docs

Overview

  • Overview

SERP

  • POSTSERP

Core

  • POSTGeocode
  • POSTTranslate
  • POSTSearch
  • POSTVision
  • POSTPlaces Search
  • POSTPlace Details
  • POSTPlaces Nearby
  • POSTAutocomplete

Maps

  • POSTSearch
  • POSTPlace Details
  • POSTReviews

Hotels

  • POSTSearch
  • POSTDetail
  • POSTReviews
  • POSTPhotos

Flights

  • POSTSearch
  • POSTCalendar
  • POSTExplore

Finance

  • POSTQuote
  • POSTFundamentals
  • POSTChart
  • POSTNews
  • POSTSearch
  • POSTEstimates
  • POSTEarnings

Google Finance Quote

Free

Get a real-time stock quote from Google Finance.

POST/api/v1/tools/google-finance/quote

Parameters

symbolstringrequired

Stock identifier (e.g. "GOOGL:NASDAQ", "BTC-USD") or Google Finance URL.

fieldsstring[]

Fields to include in response. Omit or pass ["*"] for all fields.

Response Schema

dataobject

Google Finance quote result

quoteobject

Real-time quote data

companyobject

Company information

classificationobject

Sector and industry classification labels

relatedStocksobject[]

Related stock quotes

marketIndicesobject[]

Major market indices

marketMoversobject[]

Trending market movers

metaobject

Request metadata

toolstring

Tool name (google-finance-quote)

creditsUsednumber

Credits consumed (0)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/google-finance/quote \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"symbol": "GOOGL:NASDAQ"
}'

Response Example

{
"data": {
"quote": {
"ticker": "GOOGL",
"exchange": "NASDAQ",
"name": "Alphabet Inc Class A",
"type": "stock",
"currency": "USD",
"price": 157.47,
"previousClose": 155.89,
"change": 1.58,
"changePercent": 1.01,
"marketCap": 1940000000000,
"peRatio": 21.3,
"volume": 28543000
},
"company": {
"description": "Alphabet Inc. is an American multinational conglomerate...",
"ceo": "Sundar Pichai",
"employees": 182502,
"website": "https://abc.xyz"
}
},
"meta": {
"tool": "google-finance-quote",
"creditsUsed": 0,
"requestId": "req_abc123"
}
}