Endpoint Playground
Test Crawlora's Search Bing video results 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/bing/videos?q=openai&page=1&count=10&country=us&lang=en-us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | openai | Search query |
| page | integer | No | 1 | 1-based page number; defaults to 1 |
| count | integer | No | 10 | Results per page; defaults to 10, clamped to 1..50 |
| country | string | No | us | Two-letter country code; defaults to us |
| lang | string | No | en-us | Bing UI language; defaults to en-us |
{
"code": 200,
"data": {
"pagination": {
"count": 10,
"next_page": 2,
"page": 1,
"previous_page": 1
},
"results": [
{
"age": "Nov 6, 2023",
"age_timestamp": 1699228800,
"creator": "OpenAI",
"duration": "45:12",
"platform": "YouTube",
"position": 1,
"thumbnail": "https://example.com/openai-video.jpg",
"title": "OpenAI DevDay keynote - YouTube",
"url": "https://www.youtube.com/watch?v=openai-devday",
"views": "1.2M views"
}
]
},
"msg": "OK"
}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 normalized Bing video search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Bing video HTML/async pages and return 503 when Bing serves a challenge page or unusable HTML.
{
"code": 200,
"data": {
"pagination": {
"count": 10,
"next_page": 2,
"page": 1,
"previous_page": 1
},
"results": [
{
"age": "Nov 6, 2023",
"age_timestamp": 1699228800,
"creator": "OpenAI",
"duration": "45:12",
"platform": "YouTube",
"position": 1,
"thumbnail": "https://example.com/openai-video.jpg",
"title": "OpenAI DevDay keynote - YouTube",
"url": "https://www.youtube.com/watch?v=openai-devday",
"views": "1.2M views"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bing/videos?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"