Endpoint Playground
Test Crawlora's Yahoo Finance download 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/download" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Batch download request |
{
"code": 200,
"data": {
"results": [
{
"error": "sample",
"history": {
"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"
},
"symbol": "sample"
}
]
},
"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 historical price data for up to 25 symbols.
{
"code": 200,
"data": {
"results": [
{
"error": "sample",
"history": {
"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"
},
"symbol": "sample"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/yahoo-finance/download" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"