scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTQuote
  • POSTFundamentals
  • POSTChart
  • POSTNews
  • POSTOptions
  • POSTSearch

Yahoo Finance News

1 credit

Get recent news articles for a ticker symbol.

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

Parameters

symbolstringrequired

Ticker symbol to get news for.

maxResultsnumber

Maximum news articles to return (1-200). Defaults to 10.

Response Schema

dataobject

Yahoo Finance news result

articlesobject[]

Array of news articles

metaobject

Request metadata

toolstring

Tool name (yahoo-finance-news)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"articles": [
{
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Apple Reports Record Q2 Revenue",
"description": "Apple Inc. posted better-than-expected earnings driven by strong iPhone sales...",
"publisher": "Reuters",
"link": "https://finance.yahoo.com/news/apple-reports-record-q2-revenue.html",
"pubDate": "Fri, 18 Apr 2026 14:30:00 +0000",
"providerPublishTime": 1713450600
}
]
},
"meta": {
"tool": "yahoo-finance-news",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}