scraper
Back to API docs

Overview

  • Overview

APIs

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

Yahoo Finance Quote

1 credit

Get a real-time quote for a ticker symbol.

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

Parameters

symbolstringrequired

Ticker symbol (e.g. AAPL, BTC-USD, ^GSPC).

fieldsstring[]

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

Response Schema

dataobject

Yahoo Finance quote result

quoteobject

Real-time price and market data

profileobject

Company profile and business summary

keyStatisticsobject

Key financial statistics and ratios

calendarEventsobject

Upcoming earnings dates and dividend info

recommendationsobject[]

Related stock recommendations

insightsobject

Research reports and events

priceInsightsobject

Price analysis insights

technicalEventsobject

Technical analysis events and signals

analystConsensusobject

Analyst consensus data

ratingsobject

Analyst ratings breakdown

scheduledEventsobject

Scheduled earnings and economic events

metaobject

Request metadata

toolstring

Tool name (yahoo-finance-quote)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"quote": {
"symbol": "AAPL",
"shortName": "Apple Inc.",
"regularMarketPrice": 198.11,
"regularMarketChange": 2.45,
"regularMarketChangePercent": 1.25,
"marketCap": 3080000000000,
"fiftyTwoWeekHigh": 199.62,
"fiftyTwoWeekLow": 164.08
},
"profile": {
"sector": "Technology",
"industry": "Consumer Electronics",
"website": "https://www.apple.com",
"fullTimeEmployees": 161000
},
"recommendations": [
{
"symbol": "MSFT",
"score": 0.25
},
{
"symbol": "GOOGL",
"score": 0.22
}
]
},
"meta": {
"tool": "yahoo-finance-quote",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}