scraper
Back to API docs

Overview

  • Overview

APIs

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

Google Finance Chart

1 credit

Get historical chart data for a stock from Google Finance.

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

Parameters

symbolstringrequired

Stock identifier (e.g. "GOOGL:NASDAQ", "BTC-USD").

windowstring

Time range for chart data. One of "1D", "5D", "1M", "6M", "YTD", "1Y", "5Y", "MAX". Defaults to "1M".

fieldsstring[]

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

Response Schema

dataobject

Google Finance chart result

windowstring

Time window used

intervalSecondsnumber

Interval between data points in seconds

previousClosenumber

Previous closing price

dataPointsobject[]

Array of chart data points

metaobject

Request metadata

toolstring

Tool name (google-finance-chart)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/google-finance/chart \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"symbol": "AAPL:NASDAQ",
"window": "1M"
}'

Response Example

{
"data": {
"window": "1M",
"intervalSeconds": 86400,
"previousClose": 198.36,
"dataPoints": [
{
"timestamp": 1710892800,
"date": [
2026,
3,
20
],
"price": 199.15,
"change": 0.79,
"changePercent": 0.4,
"volume": 52340000
}
]
},
"meta": {
"tool": "google-finance-chart",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}