ABCProxy Docs
English
English
  • Overview
  • PROXIES
    • Residential Proxies
      • Introduce
      • Dashboard to Get IP to Use
      • Getting started guide
      • Account security authentication
      • API extraction
      • Basic query
      • Select the country/region
      • Select State
      • Select city
      • Session retention
    • Socks5 Proxies
      • Getting Started
      • Proxy Manager to Get IP to Use
    • Unlimited Residential Proxies
      • Getting started guide
      • Account security authentication
      • API extraction
    • Static Residential Proxies
      • Getting started guide
      • API extraction
      • Account security authentication
    • ISP Proxies
      • Getting started guide
      • Account security authentication
    • Dedicated Datacenter Proxies
      • Getting started guide
      • API extraction
      • Account security authentication
  • Advanced proxy solutions
    • Web Unblocker
      • Get started
      • Making Requests
        • JavaScript rendering
        • Geo-location
        • Session
        • Header
        • Cookie
        • Blocking Resource Loading
    • APM-ABC Proxy Manger
      • How to use
  • SERP API
    • Get started
    • Google
      • Google Search API
      • Google Shopping API
      • Google Local API
      • Google Videos API
      • Google News API
      • Google Flights API
      • Google Product API
      • Google Images API
      • Google Lens Search API
      • Google Play Product API
      • Google Play Game Store API
      • Google Play Book Store API
      • Google Play Movies Store API
      • Google Jobs API
      • Google Scholar Author API
      • Google Scholar API
      • Google Scholar Cite API
      • Google Scholar Profiles API
    • Bing
      • Bing Search API
      • Bing News API
      • Bing Shopping API
      • Bing Images API
      • Bing Videos API
      • Bing Maps API
    • Yahoo
      • Yahoo! Search API
      • Yahoo! Shopping API
      • Yahoo! Images API
      • Yahoo! Videos API
    • DuckDuckGo
      • DuckDuckGo Search API
      • DuckDuckGo News API
      • DuckDuckGo Maps API
    • Ebay
      • Ebay Search API
    • Walmart
      • Walmart Search API
      • Walmart Product Reviews API
      • Walmart Product API
    • Yelp
      • Yelp Reviews API
    • Youtube
      • YouTube Search API
      • YouTube Video API
      • YouTube Video Batch Download API
        • YouTube Batch Download Task Information API
        • YouTube Single Download Job Information API
  • Parametric
    • Google Ads Transparency Center Regions
    • Google GL Parameter: Supported Google Countries
    • Google HL Parameter: Supported Google Languages
    • Google Lens Country Parameter: Supported Google Lens Countries
    • Google Local Services Job Types
    • Google Trends Categories
    • Supported DuckDuckGo Regions
    • Supported Ebay Domains
    • Supported Ebay location options
    • Google Trends Locations
    • Supported Ebay sort options
    • Supported Google Countries via cr parameter
    • Supported Google Domains
    • Supported Google Languages via lr parameter
    • Supported Google Play Apps Categories
    • Supported Google Patents country codes
    • Supported Google Play Games Categories
    • Supported Google Play Books Categories
    • Supported Google Play Movies Categories
    • Supported Google Scholar Courts
    • Supported Yahoo! Countries
    • Supported Yahoo! Domains
    • Supported Yahoo! File formats
    • Supported Yahoo! Languages
    • Supported Yandex Domains
    • Supported Yandex Languages
    • Supported Yelp Domains
    • Supported Yandex Locations
    • Supported Yelp Reviews Languages
    • Walmart Stores Locations
    • Supported Google Travel currency codes
    • Supported Locations API
  • HELP
    • FAQ
      • ABCProxy Software Can Not Log In?
      • Software Tip:“please start the proxy first”
    • Refund Policy
    • Contact Us
  • INTEGRATION AND USAGE
    • Browser Integration Tools
      • Proxy Switchy Omega
      • BP Proxy Switcher
      • Brave Browser
    • Anti-Detection Browser Integration
      • AdsPower
      • BitBrowser
      • Dolphin{anty}
      • Undetectable
      • Incogniton
      • Kameleo
      • Morelogin
      • ClonBrowser
      • Hidemium
      • Helium Scraper
      • VMlogin
      • ixBrower
      • Xlogin
      • Antbrowser
      • Lauth
      • Indigo
      • IDENTORY
      • Gologin
      • MuLogin
    • Use of Enterprise Plan
      • How to use the Enterprise Plan CDKEY?
Powered by GitBook
On this page
  • Api Details
  • Request
  • Response
  • Success 200
  • Error Responses
  1. SERP API
  2. Bing

Bing Videos API

PreviousBing Images APINextBing Maps API

Our Bing Videos API allows you to scrape SERP results from Bing Videos. The API is accessed through the following endpoint: /search?engine=bing_videos.

Api Details

Endpoint GET https://serpapi.abcproxy.com/search

Description

A user may query the following: https://serpapi.abcproxy.com/search?engine=bing_videos utilizing a GET request. Head to the for a live and interactive demo.


Request

HTTP Request


curl -X GET "https://serpapi.abcproxy.com/search" \
  -d "engine=bing_videos" \
  -d "q=Coffee" \
  -d "no_cache=false" \
  -d "api_key=YOUR_API_KEY"
import requests

params = {
    "engine": "bing_videos",
    "q": "Coffee",
    "no_cache": "false",
    "api_key": "YOUR_API_KEY"
}
response = requests.get("https://serpapi.abcproxy.com/search", params=params)
print(response.json())
const axios = require('axios');

const params = {
  engine: "bing_videos",
  q: "Coffee",
  no_cache: "false",
  api_key: "YOUR_API_KEY"
};

axios.get("https://serpapi.abcproxy.com/search", { params })
  .then(response => console.log(response.data));
GET /search?engine=bing_videos&q=Coffee&no_cache=false&api_key=YOUR_API_KEY HTTP/1.1
Host: serpapi.abcproxy.com
<?php
$client = new \GuzzleHttp\Client();
$response = $client->get('https://serpapi.abcproxy.com/search', [
    'query' => [
        'engine' => 'bing_videos',
        'q' => 'Coffee',
        'no_cache' => 'false',
        'api_key' => 'YOUR_API_KEY'
    ]
]);
echo $response->getBody();
package main

import (
    "net/http"
    "io/ioutil"
    "log"
)

func main() {
    client := &http.Client{}
    req, _ := http.NewRequest("GET", "https://serpapi.abcproxy.com/search", nil)
    
    q := req.URL.Query()
    q.Add("engine", "bing_videos")
    q.Add("q", "Coffee")
    q.Add("no_cache", "false")
    q.Add("api_key", "YOUR_API_KEY")
    req.URL.RawQuery = q.Encode()

    resp, _ := client.Do(req)
    body, _ := ioutil.ReadAll(resp.Body)
    log.Println(string(body))
}
using System;
using System.Net.Http;

class Program
{
    static async Task Main()
    {
        var client = new HttpClient();
        var query = System.Web.HttpUtility.ParseQueryString(string.Empty);
        query["engine"] = "bing_videos";
        query["q"] = "Coffee";
        query["no_cache"] = "false";
        query["api_key"] = "YOUR_API_KEY";
        
        var response = await client.GetAsync(
            $"https://serpapi.abcproxy.com/search?{query}"
        );
        Console.WriteLine(await response.Content.ReadAsStringAsync());
    }
}
import java.net.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        String url = "https://serpapi.abcproxy.com/search" +
            "?engine=bing_videos" +
            "&q=Coffee" +
            "&no_cache=false" +
            "&api_key=YOUR_API_KEY";
        
        HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
        conn.setRequestMethod("GET");
        
        BufferedReader in = new BufferedReader(
            new InputStreamReader(conn.getInputStream())
        );
        String response = in.lines().collect(Collectors.joining());
        System.out.println(response);
    }
}

Parameters

Search Query

Name
Type
Required
Description
Example

q

string

Yes

Parameter defines the search query. You can use anything that you would use in a regular Bing Videos search.

123

Geographic Location

Name
Type
Required
Description
Example

mkt

string

No

The market where the results come from (e.g. en-US). Typically, mkt is the country where the user is making the request from. However, it could be a different country if the user is not located in a country where Bing Shopping API delivers results. The market must be in the form -. For example, en-US. The string is case insensitive. For a list of possible market values, see Market Codes. This parameter and the cc query parameter are mutually exclusive—do not specify both.

en-US

Localization

Name
Type
Required
Description
Example

cc

Parameter defines the country to search from.

us, de, gb

setlang

string

Yes

Parameter defines the language to search with.

us, de, gb

Advanced Bing Videos Parameters

Name
Type
Required
Description
Example

length

string

No

Parameter is used for filtering videos by duration.It can be set to: short - Short (less than 5 minutes) medium - Medium (5-20 minutes) long - Long (more than 20 minutes)

-

date

string

No

Parameter is used for filtering videos by date.It can be set to: lt1440 - Past 24 hours lt10080 - Past week lt43200 - Past month lt525600 - Past year

-

resolution

string

No

Parameter is used for filtering videos by resolution type. It can be set to: lowerthan_360p - Lower than 360p 360p - 360p or higher 480p - 480p or higher 720p - 720p or higher 1080p - 1080p or higher

-

source_site

string

No

Parameter is used for filtering videos by source. It can be set to: dailymotion.com - DailyMotion vimeo.com - Vimeo metacafe.com - Metacafe hulu.com - Hulu vevo.com - VEVO myspace.com - Myspace mtv.com - MTV cbsnews.com - CBS foxnews.com - FOX cnn.com - CNN msn.com - MSN

-

price

string

No

Parameter is used for filtering videos by price. It can be set to: free - Free paid - Paid

-

Pagination

Name
Type
Required
Description
Example

first

string

No

Parameter controls the offset of the organic results. This parameter defaults to 1.

10

count

string

No

Parameter controls the number of results per page. This parameter is only a suggestion and might not reflect the returned results.

100

Serpapi Parameters

Name
Type
Required
Description
Example

engine

string

Yes

Set parameter to bing_videos to use the Bing Videos API engine.

bing_videos

no_c1ache

boolean

No

Parameter will force SerpApi to fetch the Google Patents results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month.

true or false

api_key

string

Yes

Parameter defines the SerpApi private key to use.

YOUR_API_KEY


Response

Success 200

Response Body

{
  "code": 200,
  "search_parameters": {
    "api_key": "YOUR_API_KEY",
    "q": "Coffee",
    "engine": "bing_videos",
    "no_cache": true
  },
  "search_metadata": {
    "bing_videos_url": "https://www.bing.com/videos/search?FORM=VRFLTR&MMASYNC=1&q=Coffee",
    "raw_html_file": "https://webserp.abcproxy.com/files/f6c96300dd6e178d/d8d61a20-e906-445c-b58e-1484da9a9afe.html",
    "xray_html_file": "https://webserp.abcproxy.com/files/f6c96300dd6e178d/d8d61a20-e906-445c-b58e-1484da9a9afe.xray",
    "total_time_taken": "41.4871",
    "id": "d8d61a20-e906-445c-b58e-1484da9a9afe",
    "json_endpoint": "https://webserp.abcproxy.com/files/f6c96300dd6e178d/d8d61a20-e906-445c-b58e-1484da9a9afe.json",
    "created_at": "2025-04-09 11:31:50"
  },
  "suggested_searches": [
    {
      "link": "https://www.bing.com/videos/search?q=Coffee+Recipes&FORM=RESTAB",
      "name": "CoffeeRecipes",
      "thumbnail": "https://th.bing.com/th?q=Coffee+Recipes&w=42&h=42&c=7&rs=1&p=0&o=5&pid=1.7&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1"
    },
    ...
  ],
  "shopping_results": [
    {
      "title": "Tylers Acid Free Organic Ground Coffee - 100% Arabica Full Flavor - Neutral Ph - Whole Bean And Caffeinated - No Bitter Aftertaste - Gentle On",
      "seller": "Amazon.com",
      "shipping": "Free shipping",
      "rating": "Star Rating: 4.5 out of 5.",
      "position": 1,
      "thumbnail": "https://th.bing.com/th/id/OPHS.us17fCmUmZpDFg474C474?w=200&h=220&rs=1&o=5&pid=21.1",
      "link": "https://www.bing.com/aclick?ld=e8fsnI-iFj35SMsZEIlczONDVUCUxVGkjZxRRoqEWu2wHqoOsJaJvnPXJMRajeCE1gG2Wf-3p74qtKph9CU0UfAYHmnoTlQ1il-AgMNuBTsvhrm1XIy8OgW95fGuODcaCifrgogsSfnMen8AR2-8ecuUvSccuWcMmneCcWnmcxcuKWwFr1Z0Kx1mbbtkmHWRtw2yV8wg&u=aHR0cHMlM2ElMmYlMmZ3d3cuYW1hem9uLmNvbSUyZlR5bGVycy1Db2ZmZWUtQWNpZC1PcmdhbmljLUdyb3VuZCUyZmRwJTJmQjA4Nlk5M0szQiUyZnJlZiUzZGFzY19kZl9CMDg2WTkzSzNCJTNmdGFnJTNkYmluZ3Nob3BwaW5nYS0yMCUyNmxpbmtDb2RlJTNkZGYwJTI2aHZhZGlkJTNkNzk5MjA4NjE2NDE1MTUlMjZodm5ldHclM2RvJTI2aHZxbXQlM2RlJTI2aHZibXQlM2RiZSUyNmh2ZGV2JTNkYyUyNmh2bG9jaW50JTNkJTI2aHZsb2NwaHklM2QlMjZodnRhcmdpZCUzZHBsYS00NTgzNTIwMzkyOTkxNjU1JTI2cHNjJTNkMQ&rlid=283733e4395915cf9c795410b17e57f5",
      "price": "$42.99"
    },
    ...
  ],
  "ads": [
    {
      "review": "Deals of the Day · Fast Shipping · Shop Our Huge Selection · Read Ratings & Reviews",
      "link": "https://www.bing.com/aclick?ld=e8l57EZxWc0jOF4fEOZEv5ATVUCUxTk7VReUb6iDesbT4jSUHZyKtOcUNyeKNULL_PFiCMqZ0bcyg_5hzt3Ts_zRpwpqAxHaw3nRYLFU09pB4sNxDote7oMtHd4vZF2FlQFi9nSa7n4qvlk_W6mQ2QH1JRAZhJcs-chbhTkR4VArTzSWP9LBu9dd8VBYaalMZN4aZ_yg&u=aHR0cHMlM2ElMmYlMmZ3d3cuYW1hem9uLmNvbSUyZnMlMmYlM2ZpZSUzZFVURjglMjZrZXl3b3JkcyUzZGNvZmZlZSUyNTI3JTI2aW5kZXglM2RhcHMlMjZ0YWclM2RtaDBiLTIwJTI2cmVmJTNkcGRfc2xfNWJlNTdkOGRma19lJTI2YWRncnBpZCUzZDEzMzM3MDgxNjY5OTkxNzElMjZodmFkaWQlM2Q4MzM1Njk3NTM2NzUzMCUyNmh2bmV0dyUzZG8lMjZodnFtdCUzZGUlMjZodmJtdCUzZGJlJTI2aHZkZXYlM2RjJTI2aHZsb2NpbnQlM2QlMjZodmxvY3BoeSUzZDExMTMzNCUyNmh2dGFyZ2lkJTNka3dkLTgzMzU3MDk2ODAzNzgxJTNhbG9jLTE5MCUyNmh5ZGFkY3IlM2QyNjYxMl8xMTY2NDI2MyUyNm1jaWQlM2Q5ZDU5N2NmZmFkNTAzMjRiODFlZWNjNGE0NDdhMmExZA&rlid=77aaf9323451117de2c59ec6bc7626d9",
      "displayed_link": "https://www.amazon.com",
      "position": 1,
      "title": "Shop Coffee' Today",
      "description": "SponsoredFind deals and compare prices on coffee' at Amazon.com. Free shipping on qualifie…"
    },
    ...
  ],
  "shorts_results": [
    {
      "link": "https://www.youtube.com/watch?v=1VFTwraPpJM",
      "duration": "00:16",
      "channel": "Rush University System for Health",
      "views": 17700,
      "source": "YouTube",
      "position": 1,
      "title": "Health Benefits of Coffee",
      "date": "Sep 29, 2023"
    },
    ...
  ],
...
}

Response Fields

Field
Type
Description

search_parameters

object

Contains query parameters and search context

search_metadata

object

Contains timing and status information

videos_results

object[]

List of standard video results with detailed information

shorts_results

object[]

List of short video results (similar to YouTube Shorts)

suggested_searches

object[]

List of suggested search terms and their links

shopping_results

object[]

List of related shopping products and details

related_search_results

object[]

List of related search topics and links

ads

object[]

List of advertisement contents with details


Error Responses

Common Errors

HTTP Status
Error Code
Description

200

400

API Key can not be empty

200

401

Param error

200

402

API Key error

200

403

Insufficient Balance

200

404

Deduction failed

200

405

Failed to record usage count

200

406

Unsupported engine

200

407

Network error

200

408

File not found

200

409

Limit param error

200

410

Build url error

200

411

Failed to QueryRecentRecord

200

412

Failed to find json

200

413

Get html error

200

414

HTML is empty

200

429

Too many request

Error Example

{
  "code": 400,
  "message": "API Key can not be empty"
}

playground