Endpoint Playground
Test Crawlora's Yahoo Search Videos 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/videos?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": "You can just launch Sites | ChatGPT Work",
"url": "https://www.youtube.com/watch?v=6VwIXjFj6YQ",
"domain": "YouTube",
"description": "ChatGPT Work gathers context across your surfaces.",
"thumbnail_url": "https://tse2.mm.bing.net/th?id=OVF.example",
"duration": "00:29"
}
]
}
}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 video-search results for a query: title, destination page URL, source domain, description, thumbnail, and duration. Results are fetched from Yahoo's own server-rendered video-search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chatgpt",
"results": [
{
"position": 1,
"title": "You can just launch Sites | ChatGPT Work",
"url": "https://www.youtube.com/watch?v=6VwIXjFj6YQ",
"domain": "YouTube",
"description": "ChatGPT Work gathers context across your surfaces.",
"thumbnail_url": "https://tse2.mm.bing.net/th?id=OVF.example",
"duration": "00:29"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-search/videos?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"