scraper
Back to API docs

Overview

  • Overview

APIs

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

Google Finance Estimates

1 credit

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 (1)

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": 1,
"requestId": "req_abc123"
}
}