Endpoint Playground
Test Crawlora's Yahoo Search 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-search/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": "openai",
"suggestions": [
{
"text": "OpenAI",
"entity": {
"type": "company",
"image_url": "https://s.yimg.com/zb/imgv1/4101d01f-a338-3734-958b-9574654493d2/t_140x140",
"description": "OpenAI is an American artificial intelligence research organization headquartered in San Francisco, consisting of OpenAI Group PBC, a for-profit public benefit corporation, partially controlled by OpenAI Foundation, a nonprofit."
}
},
{
"text": "openai chat gpt"
}
],
"source_url": "https://search.yahoo.com/sugg/gossip/gossip-us-fastbreak?command=openai&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's own search-box autocomplete suggestions for a partial query: a flat list of suggested search terms, each optionally carrying knowledge-panel entity metadata (type, image, subtitle, description) when Yahoo resolves the term to a known company, place, product, or similar entity rather than a plain phrase.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"suggestions": [
{
"text": "OpenAI",
"entity": {
"type": "company",
"image_url": "https://s.yimg.com/zb/imgv1/4101d01f-a338-3734-958b-9574654493d2/t_140x140",
"description": "OpenAI is an American artificial intelligence research organization headquartered in San Francisco, consisting of OpenAI Group PBC, a for-profit public benefit corporation, partially controlled by OpenAI Foundation, a nonprofit."
}
},
{
"text": "openai chat gpt"
}
],
"source_url": "https://search.yahoo.com/sugg/gossip/gossip-us-fastbreak?command=openai&nresults=10&output=sd1",
"fetched_at": "2026-08-14T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"