Endpoint Playground
Test Crawlora's Yahoo Finance Historical Prices API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yahoo-finance/ticker/AAPL/history?period=1mo&interval=1d" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| symbol (path) | string | Yes | AAPL | Yahoo Finance symbol such as AAPL |
| period | string | No | 1mo | Range such as 1d, 1mo, 1y, max |
| start | string | No | Unix seconds, RFC3339, or YYYY-MM-DD | |
| end | string | No | Unix seconds, RFC3339, or YYYY-MM-DD | |
| interval | string | No | 1d | Interval such as 1d, 1h, 5m |
| include_prepost | boolean | No | Include pre/post market data | |
| include_actions | boolean | No | Include dividends, splits, and capital gains | |
| auto_adjust | boolean | No | Adjust OHLC prices with adjusted close | |
| back_adjust | boolean | No | Back-adjust OHLC prices while keeping close | |
| keepna | boolean | No | Keep fully empty chart rows | |
| rounding | boolean | No | Round prices to two decimals |
{
"code": 200,
"data": {
"events": {
"capital_gains": [
{}
],
"dividends": [
{}
],
"splits": [
{}
]
},
"meta": {},
"points": [
{
"adj_close": 211,
"close": 211,
"datetime": "2026-05-18T13:30:00Z",
"high": 212,
"low": 209,
"open": 210,
"timestamp": 1779111000,
"volume": 54200000
}
],
"symbol": "AAPL"
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized OHLCV points for a symbol. Use either period or start/end.
{
"code": 200,
"data": {
"events": {
"capital_gains": [
{}
],
"dividends": [
{}
],
"splits": [
{}
]
},
"meta": {},
"points": [
{
"adj_close": 211,
"close": 211,
"datetime": "2026-05-18T13:30:00Z",
"high": 212,
"low": 209,
"open": 210,
"timestamp": 1779111000,
"volume": 54200000
}
],
"symbol": "AAPL"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/yahoo-finance/ticker/<symbol>/history" \
-H "x-api-key: $CRAWLORA_API_KEY"