Endpoint Playground
Test Crawlora's Yahoo Finance Search 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/search?q=apple"es_count=6&news_count=4" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | apple | Ticker symbol or company name |
| quotes_count | integer | No | 6 | Quote result count |
| news_count | integer | No | 4 | News result count |
| lists_count | integer | No | List result count | |
| include_research | boolean | No | Include research reports when Yahoo returns them | |
| enable_fuzzy_query | boolean | No | Enable fuzzy matching |
{
"code": 200,
"data": {
"lists": [
{}
],
"news": [
{}
],
"query": "sample",
"quotes": [
{}
],
"research": [
{}
]
},
"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 Yahoo Finance quotes, news, lists, and optional research reports for a query.
{
"code": 200,
"data": {
"lists": [
{}
],
"news": [
{}
],
"query": "sample",
"quotes": [
{}
],
"research": [
{}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/yahoo-finance/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"