scraper
Back to API docs

Overview

  • Overview

APIs

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

Google Finance Search

1 credit

Search for stocks, ETFs, and securities on Google Finance.

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

Parameters

querystring

Search keyword (e.g. "Apple", "tech ETF"). At least one of query or market is required.

marketstring

Market page to browse. One of "indexes", "gainers", "losers", "most-active", "trending", "climate-leaders", "currencies", "crypto", "etfs", "futures", "commodities", "bonds", "sectors", "americas", "europe-middle-east-africa", "asia-pacific", "world".

maxResultsnumber

Maximum results (1-100). Defaults to 20.

fieldsstring[]

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

Response Schema

dataobject

Google Finance search result

resultsobject[]

Array of search results

metaobject

Request metadata

toolstring

Tool name (google-finance-search)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/google-finance/search \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"query": "Apple",
"maxResults": 5
}'

Response Example

{
"data": {
"results": [
{
"ticker": "AAPL",
"exchange": "NASDAQ",
"name": "Apple Inc",
"kgMid": "/m/0k8z"
},
{
"ticker": "APLE",
"exchange": "NYSE",
"name": "Apple Hospitality REIT Inc",
"kgMid": "/g/11bc5bm3fh"
}
]
},
"meta": {
"tool": "google-finance-search",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}