Bing Carousel Results API

For some searches, Bing search results include a carousel results block. SerpApi is able to scrape, extract, and make sense of this information.

API Examples

JSON structure overview

{
  ...
  "carousel_results": [
    {
      "title": "String - Title of the carousel",
      "items": [
        {
          "position": "Integer - Position of the carousel item in the block",
          "title": "String - Title of the carousel item",
          "subtitle": "String - Subtitle or description of the carousel item",
          "link": "String - URL link to more information about the carousel item",
          "thumbnail": "String - URL of the thumbnail image for the carousel item"
        }
      ]
    },
    ...
  ],
  ...
}