Endpoint Playground
Test Crawlora's Yahoo News Suggest 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-news/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query to autocomplete | |
| count | integer | No | Number of suggestions to return, default 10, clamped to 1..20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"suggestions": [
"chatgpt",
"chatgpt open ai",
"chatgpt free",
"chatgpt ai"
],
"source_url": "https://search.yahoo.com/sugg/gossip/gossip-us-news_vertical?command=chatgpt&nresults=10&output=sd1",
"fetched_at": "2026-08-14T00:00:00Z"
}
}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 News's own search-box autocomplete suggestions for a partial query: a flat list of suggested news search terms.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"suggestions": [
"chatgpt",
"chatgpt open ai",
"chatgpt free",
"chatgpt ai"
],
"source_url": "https://search.yahoo.com/sugg/gossip/gossip-us-news_vertical?command=chatgpt&nresults=10&output=sd1",
"fetched_at": "2026-08-14T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"