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"
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
    }
  ]
}

Last updated