Endpoint Playground
Test Crawlora's Yahoo Search News 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/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"results": [
{
"position": 1,
"title": "I Asked ChatGPT How To Retire Early at 55",
"url": "https://www.aol.com/articles/asked-chatgpt-retire-early-55.html",
"description": "I asked ChatGPT how to retire at 55. The roadmap it built was mostly right.",
"source": "MoneyLion",
"age": "29 minutes ago",
"thumbnail_url": "https://s.yimg.com/fz/api/res/example.jpg"
}
]
}
}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 Yahoo's news-search results for a query: title, destination URL, description, source, and relative publish age. Results are fetched from Yahoo's own server-rendered news-search page (news.search.yahoo.com) -- a distinct product from the yahoo-news family, which covers the www.yahoo.com/news portal itself. Yahoo wraps every result link in its own click-tracking redirect; this endpoint always returns the decoded destination URL, never the raw redirect link.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"results": [
{
"position": 1,
"title": "I Asked ChatGPT How To Retire Early at 55",
"url": "https://www.aol.com/articles/asked-chatgpt-retire-early-55.html",
"description": "I asked ChatGPT how to retire at 55. The roadmap it built was mostly right.",
"source": "MoneyLion",
"age": "29 minutes ago",
"thumbnail_url": "https://s.yimg.com/fz/api/res/example.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"