Access financial data from Schwab API for real-time stock quotes and historical prices.
Access Token: Missing
Refresh Token: Missing
Last Refreshed: Never
GET /quote?symbol=AAPL
| Parameter | Description | Values |
|---|---|---|
| symbol | Stock symbol (required) | Any valid stock symbol (e.g., AAPL, MSFT) |
| fields | Filter data by root nodes | quote, fundamental, reference, extended, regular, all(Default: all) |
Returns: Current price, bid/ask, change, volume, and other trading metrics.
GET /pricehistory?symbol=AAPL&periodType=year&period=1&frequencyType=daily
| Parameter | Description | Valid Values |
|---|---|---|
| symbol | Stock symbol (required) | Any valid stock symbol (e.g., AAPL, MSFT) |
| periodType | Chart period type | day, month, year, ytd |
| period | Number of periods |
day: 1, 2, 3, 4, 5, 10 (default: 10)month: 1, 2, 3, 6 (default: 1)year: 1, 2, 3, 5, 10, 15, 20 (default: 1)ytd: 1 (default: 1)
|
| frequencyType | Time frequency type |
For day: minuteFor month: daily, weeklyFor year: daily, weekly, monthlyFor ytd: daily, weekly
|
| frequency | Time frequency value |
minute: 1, 5, 10, 15, 30daily: 1weekly: 1monthly: 1(Default for all: 1)
|
| startDate | Start date (milliseconds) | Integer timestamp (e.g., 1640995200000) |
| endDate | End date (milliseconds) | Integer timestamp (e.g., 1672531200000) |
| needExtendedHoursData | Include extended hours data | true, false |
| needPreviousClose | Include previous close | true, false |
Returns: Candle data with open, high, low, close, volume, and datetime.