Endpoint Playground
Test Crawlora's Yahoo Finance Calendar 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/calendars/earnings?limit=20&offset=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| type (path) | string | Yes | earnings | Calendar type: earnings, ipo, economic-events, or splits |
| start | string | No | Start date as YYYY-MM-DD, RFC3339, or Unix seconds | |
| end | string | No | End date as YYYY-MM-DD, RFC3339, or Unix seconds | |
| limit | integer | No | 20 | Result count, max 100 |
| offset | integer | No | 0 | Result offset |
| market_cap | number | No | Earnings-only market cap minimum | |
| filter_most_active | boolean | No | Earnings-only most-active filter, default true |
{
"code": 200,
"msg": "OK",
"data": {
"type": "earnings",
"limit": 5,
"offset": 0,
"rows": [
{
"Symbol": "AAPL",
"Company": "Apple Inc."
}
]
}
}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 global Yahoo Finance calendar rows for earnings, IPOs, economic events, or splits.
{
"code": 200,
"msg": "OK",
"data": {
"type": "earnings",
"limit": 5,
"offset": 0,
"rows": [
{
"Symbol": "AAPL",
"Company": "Apple Inc."
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-finance/calendars/<type>" \
-H "x-api-key: $CRAWLORA_API_KEY"