Endpoint Playground
Test Crawlora's Yahoo Search Local 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/local?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query, including any location intent |
{
"code": 200,
"msg": "OK",
"data": {
"query": "pizza near seattle wa",
"results": [
{
"position": 1,
"id": "36383310",
"name": "Serious Pie Downtown",
"category": "Pizza",
"price_range": "$$",
"address": "2001 4th Ave",
"phone": "(206) 838-7388",
"open_status": "Closed",
"rating": 4,
"review_count": 4870,
"image_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 local-business-search results for a query: name, category, price range, address, phone, open status, rating, and review count. Location is resolved from the query text itself, the same way a user would type into Yahoo's own local search box (e.g. "pizza near seattle wa"), not a separate coordinate parameter. Results are fetched from Yahoo's own server-rendered local-search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "pizza near seattle wa",
"results": [
{
"position": 1,
"id": "36383310",
"name": "Serious Pie Downtown",
"category": "Pizza",
"price_range": "$$",
"address": "2001 4th Ave",
"phone": "(206) 838-7388",
"open_status": "Closed",
"rating": 4,
"review_count": 4870,
"image_url": "https://s.yimg.com/fz/api/res/example.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/local?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"