Shifter Documentation
  • Getting Started
  • PROXIES
    • Rotating Residential Proxies
    • Static Residential Proxies
  • SCRAPING API
    • Web Scraping API
      • API Request
      • Basic Request
      • Rendering JavaScript
      • Custom Headers
      • Custom Cookies
      • Proxies
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Binary Files
      • Waiting for CSS
      • Screenshot
      • Extraction Rules
      • JSON Auto Parser
      • Javascript Instructions
      • Disable Stealth
      • POST Requests
      • PUT Requests
      • Conclusion
      • API Errors
  • Google SERP API
    • Search APIs
      • Google Search API
      • Google Product API
      • Google Scholar Cite API
      • Google Scholar Author API
      • Google Scholar Profiles API
      • Google Scholar API
      • Google Autocomplete API
      • Google Maps Photos API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Events API
      • Google Finance API
      • Google Play API
      • Google Jobs API
      • Google Local Services API
      • Google Jobs Listing API
      • Google Maps API
      • Google Trends API
        • Google Trends Categories List
        • Geo Parameter Options List
    • API Response
  • Bing SERP API
    • Search API
    • API Parameters
    • Basic API Requests
  • Yandex SERP API
    • Search API
    • Basic API Requests
    • API Parameters
  • Amazon API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search
    • Amazon Seller Products
    • Amazon Seller Profile
    • Amazon Seller Feedback
    • Amazon Product
    • Amazon Category
    • Amazon Bestsellers
    • Amazon Deals
  • Useful Links
    • Github
    • Shifter Homepage
    • Knowledge Base
Powered by GitBook
On this page

Was this helpful?

  1. Bing SERP API

Basic API Requests

Maximize Bing's potential with minimal effort using our Bing Search API.

Harnessing the power of Bing has never been easier. Our Bing Search API is crafted to simplify the extraction process, enabling you to get real-time search results without delving into complexities. With just a GET request and a few essential parameters, you're set to retrieve data in a structured JSON format.

Here's how you can seamlessly interact with the Bing Search API:

api_key - This is your unique identifier, ensuring secure access to our services. engine - For Bing scraping, this should always be set to 'bing'. q - Represents your target keyword or search term. Constructing your request is a breeze. Here's a basic template:

https://serp.shifter.io/v1?engine=bing&api_key=<YOUR_API_KEY>&q=<KEYWORD>

The Bing API Integration Examples

curl --request GET --url "https://serp.shifter.io/v1?engine=bing&api_key=<YOUR_API_KEY>&q=shoes"
const http = require("https");

const options = {
  "method": "GET",
  "hostname": "serp.shifter.io",
  "port": null,
  "path": "/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
import requests

API_KEY = '<YOUR_API_KEY>'
SCRAPER_URL = 'https://serp.shifter.io/v1'

PARAMS = {
    "api_key":API_KEY,
    "engine":"bing",
    "q":"shoes"
}

response = requests.get(SCRAPER_URL, params=PARAMS)

print(response.text)
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://serp.shifter.io/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

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

func main() {

	url := "https://serp.shifter.io/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://serp.shifter.io/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes")
  .asString();
var client = new RestClient("https://serp.shifter.io/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://serp.shifter.io/v1?engine=bing&api_key=YOUR_API_KEY&q=shoes")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
Response Example
{
  "search_parameters": {
    "bing_url": "https://www.bing.com/search?q=shoes&sourceid=chrome&ie=UTF-8&toWww=1&redig=6E085196FFFD4A9E971340952F08EE7C",
    "engine": "bing",
    "bing_domain": "bing.com",
    "device": "desktop",
    "query": "shoes"
  },
  "search_information": {
    "organic_results_state": "Results for exact spelling",
    "total_results": 60,
    "query_displayed": "shoes"
  },
  "organic_results": [
    {
      "title": "Shoes, Shipped FREE | Zappos.com",
      "link": "https://www.zappos.com/c/shoes",
      "displayed_link": "https://www.zappos.com/c/shoes",
      "snippet": "Shoes with cleats for soccer, football, and baseball from brands like Under Armour, Diadora, PUMA and are in good supply as well. We’ve come a long way from the cave to corporate office, and Zappos is the ideal place to shop to find all the brand shoes you need to …",
      "caption": "https://www.zappos.com/c/shoes",
      "position": 1
    },
    {
      "title": "Shoes - Macy's",
      "link": "https://www.macys.com/shop/shoes?id=13247",
      "displayed_link": "https://www.macys.com/shop/shoes?id=13247",
      "snippet": "Shoes. When your wardrobe feels lackluster, there's no need to buy an entirely new outfit—all you need is a new pair of shoes. A dash of color, a few extra inches or a casual and relaxed look is easy to attain when you look for footwear to match the outfits you already have.",
      "caption": "https://www.macys.com/shop/shoes?id=13247",
      "position": 2
    },
    {
      "title": "Shoes for Women, Men & Kids, Famous Footwear",
      "link": "https://www.famousfootwear.com/",
      "displayed_link": "https://www.famousfootwear.com",
      "snippet": "Discover the latest styles of brand name shoes & accessories for Men, Women & Kids. Buy Online, Pick Up In-Store or at Curbside with our Famously Fast Pickup!",
      "caption": "https://www.famousfootwear.com",
      "position": 3
    },
    {
      "title": "Shoes on Sale | 6pm",
      "link": "https://www.6pm.com/shoes",
      "displayed_link": "https://www.6pm.com/shoes",
      "snippet": "Shop a huge selection of shoes, boots, sandals, heels and more on sale at 6pm.com. Find designer women's, men's and kids' shoes up to 70% off.",
      "caption": "https://www.6pm.com/shoes",
      "position": 4
    }
  ]
}
PreviousAPI ParametersNextSearch API

Last updated 1 year ago

Was this helpful?