scraper
Back to API docs

Overview

  • Overview

APIs

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

Google Finance News

1 credit

Get news articles related to a stock from Google Finance.

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

Parameters

symbolstringrequired

Stock identifier to get news for.

maxResultsnumber

Maximum number of articles to return (1-50). Defaults to 20.

Response Schema

dataobject

Google Finance news result

articlesobject[]

Array of news articles

metaobject

Request metadata

toolstring

Tool name (google-finance-news)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"articles": [
{
"title": "Tesla Delivers Record Q1 2026 Revenue",
"source": "Reuters",
"url": "https://www.reuters.com/business/autos/tesla-q1-2026/",
"timestamp": 1713456000,
"snippet": "Tesla reported record first-quarter revenue driven by...",
"thumbnailUrl": "https://www.reuters.com/resizer/v2/...",
"relatedTickers": [
{
"ticker": "TSLA",
"exchange": "NASDAQ"
}
]
}
]
},
"meta": {
"tool": "google-finance-news",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}