scraper
Back to API docs

Overview

  • Overview

APIs

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

Google Finance Fundamentals

1 credit

Get financial fundamentals for a stock from Google Finance.

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

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 fundamentals result

periodsobject[]

Array of financial periods (quarterly and annual)

metaobject

Request metadata

toolstring

Tool name (google-finance-fundamentals)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"periods": [
{
"periodType": "quarterly",
"fiscalEnd": {
"year": 2026,
"month": 3,
"day": 31
},
"currency": "USD",
"revenue": 65585000000,
"netIncome": 24688000000,
"eps": 3.32,
"epsDiluted": 3.29,
"operatingIncome": 29843000000,
"operatingMargin": 0.455,
"ebitda": 34200000000,
"peRatio": 30.2,
"profitMargin": 0.376,
"revenueGrowth": 0.13
}
]
},
"meta": {
"tool": "google-finance-fundamentals",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}