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 Estimates

Free

Get analyst estimates for a stock from Google Finance.

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

Parameters

symbolstringrequired

Stock identifier (e.g. "GOOGL:NASDAQ", "MSFT:NASDAQ").

fieldsstring[]

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

Response Schema

dataobject

Google Finance estimates result

estimatesobject[]

Array of analyst estimates for future periods

metaobject

Request metadata

toolstring

Tool name (google-finance-estimates)

creditsUsednumber

Credits consumed (0)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"estimates": [
{
"fiscalEnd": {
"year": 2026,
"month": 6,
"day": 30
},
"periodType": "quarterly",
"currency": "USD",
"estimatedRevenue": 158900000000,
"estimatedEps": 1.42,
"estimatedEpsDiluted": 1.39,
"estimatedPeRatio": 58.7
}
]
},
"meta": {
"tool": "google-finance-estimates",
"creditsUsed": 0,
"requestId": "req_abc123"
}
}