Endpoint Playground
Test Crawlora's Yahoo Search Images 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/images?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": "Chatgpt Cheat Sheet For Writing Prompts",
"image_url": "https://gizmodo.com/app/uploads/2024/07/ChatGPT-Voice-Chat.jpeg",
"page_url": "https://example.com/chatgpt-cheat-sheet",
"domain": "example.com",
"thumbnail_url": "https://tse4.mm.bing.net/th/id/OIP.example",
"width": 1920,
"height": 1080
}
]
}
}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 image-search results for a query: title, direct image URL, the page hosting the image, source domain, thumbnail, and original image dimensions when available. Results are fetched from Yahoo's own server-rendered image-search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"results": [
{
"position": 1,
"title": "Chatgpt Cheat Sheet For Writing Prompts",
"image_url": "https://gizmodo.com/app/uploads/2024/07/ChatGPT-Voice-Chat.jpeg",
"page_url": "https://example.com/chatgpt-cheat-sheet",
"domain": "example.com",
"thumbnail_url": "https://tse4.mm.bing.net/th/id/OIP.example",
"width": 1920,
"height": 1080
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/images?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"