Endpoint Playground
Test Crawlora's Yahoo 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-search/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| page | integer | No | 1-based page number, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI | Research & Deployment",
"url": "https://openai.com/",
"description": "We believe our research will eventually lead to artificial general intelligence, a system that can solve human-level problems.",
"hostname": "openai.com"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}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 web search results for a query string: title, destination URL, description, and hostname, plus page-based pagination. Yahoo wraps every result link in its own click-tracking redirect; this endpoint always returns the decoded destination URL, never the raw redirect link. Results are fetched from Yahoo's own server-rendered search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI | Research & Deployment",
"url": "https://openai.com/",
"description": "We believe our research will eventually lead to artificial general intelligence, a system that can solve human-level problems.",
"hostname": "openai.com"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"