Bing Videos 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.

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

API Parameters

Search Query

q

Required

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

Geographic Location

mkt

Optional

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 Videos API delivers results. The market must be in the form <language code>-<country code>. For example, en-US. The string is case insensitive. For a list of possible market values, see Market Codes.

NOTE: If known, you are encouraged to always specify the market. Specifying the market helps Bing route the request and return an appropriate and optimal response. If you specify a market that is not listed in Market Codes, Bing Videos API uses a best fit market code based on an internal mapping that is subject to change.

This parameter and the cc query parameter are mutually exclusive—do not specify both.

Localization

cc

Optional

Parameter defines the country to search from. It follows the 2-character ISO_3166-1 format. (e.g., us for United States, de for Germany, gb for United Kingdom, etc.).

setlang

Optional

Parameter defines the language to search with. It follows the 2-character ISO_3166-1 format. (e.g., us for United States, de for Germany, gb for United Kingdom, etc.). You can view all valid language codes here.

Pagination

first

Optional

Parameter controls the offset of the organic results. This parameter defaults to 1. (e.g., first=10 will move the 10th organic result to the first position).

count

Optional

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

Advanced Bing Videos Parameters

length

Optional

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

Optional

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

Optional

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

Optional

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

Optional

Parameter is used for filtering videos by price. It can be set to:

free - Free
paid - Paid

Serpapi Parameters

engine

Required

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

device

Optional

Parameter defines the device to use to get the results. It can be set to desktop (default) to use a regular browser, tablet to use a tablet browser (currently using iPads), or mobile to use a mobile browser (currently using iPhones).

no_cache

Optional

Parameter will force SerpApi to fetch the Bing Videos 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. It can be set to false (default) to allow results from the cache, or true to disallow results from the cache. no_cache and async parameters should not be used together.

async

Optional

Parameter defines the way you want to submit your search to SerpApi. It can be set to false (default) to open an HTTP connection and keep it open until you got your search results, or true to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.

api_key

Required

Parameter defines the SerpApi private key to use.

output

Optional

Parameter defines the final output you want. It can be set to json (default) to get a structured JSON of the results, or html to get the raw html retrieved.

API Results

JSON Results

JSON output includes structured data for Shopping Results, Suggested Search Results, Related Search Results, Shorts Results, and Ads Results.

A search status is accessible through search_metadata.status. It flows this way: Processing -> Success || Error. If a search has failed, error will contain an error message. search_metadata.id is the search ID inside SerpApi.

HTML Results

HTML output is useful to debug JSON results or support features not supported yet by SerpApi.
HTML output gives you the raw HTML results from Bing Videos.

API Examples

JSON structure overview

{
  ...
  "video_results": [
    {
      "title": "String - Title of video",
      "link": "String - Link to video",
      "thumbnail": "String - Displayed thumbnail of video",
      "date": "String - Date of video",
      "source": "String - Source of video",
      "length": "String - Length of video",
      "channel": "String - Channel of video",
      "channel_thumbnail": "String - Channle thumbnail of video",
      "views": "String - Total views of video",
      "extracted_views": "Integer - Total views of video",
      "position": "Number - Position of video"
    }
  ],
  "suggested_search_results": [
    {
      "title": "String - Title of the result",
      "link": "String - Link to the result",
      "thumbnail": "String - URL of the result thumbnail"
      "position": "Integer - Position of result"
    }
  ],
  "shopping_results": [
    {
      "title": "String - Title of result",
      "price": "String - Price of result",
      "extracted_price": "Numeric - Price of result",
      "sale_price": "String - Sale price of result",
      "extracted_sale_price": "Numeric - Sale price of result",
      "link": "String - Link to result",
      "thumbnail": "String - Thumnbail of result",
      "rating": "Integer - Rating of result",
      "reviews": "Integer - Total reviews for result",
      "badge": "String - Badge or tag of result",
      "seller": "String - Seller of result",
      "position": "Integer - Position of result"
    }
  ],
  "shorts_results": [
    {
      "title": "String - Title of the video",
      "date": "String - Date of the video",
      "link": "String - Link to the video",
      "duration": "String - Length of the video",
      "views": "Integer - Extracted value of total views",
      "source": "String - Source of the video",
      "thumbnail": "String - URL of the video thumbnail"
    }
  ],
  "related_search_results": [
    {
      "title": "String - Title of the result",
      "link": "String - Link to the result",
      "thumbnail": "String - URL of the result thumbnail"
      "position": "Integer - Position of result"
    }
  ],
  "ads_results": [
    {
      "title": "String - Title of the result",
      "description": "String - Description of the result",
      "tag": "String - Optional tag of the result",
      "snippet": "String - Optional snippet of the result",
      "social": "String - Optional social network of the result",
      "review": "String - Optional review assosicated with the result",
      "review_link": "String - Optional link to review of the result",
      "link": "String - Link of the result",
      "displayed_link": "String - Displayed link of the result",
      "sitelinks": "Array - Optional sitelink items of the result. Each includes a title and link.",
      "position": "Integer - Position of result"
    }
  ]
}

Results for: pizza

Results for: pizza

JSON Example

{
  "search_metadata": {
    "id": "642ebe1d15afff0695b881a4",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/3952ad2634546fdd/642ebe1d15afff0695b881a4.json",
    "created_at": "2023-04-06 12:42:05 UTC",
    "processed_at": "2023-04-06 12:42:05 UTC",
    "bing_videos_url": "https://www.bing.com/videos/search?q=pizza&FORM=VRFLTR&MMASYNC=1&qft=",
    "raw_html_file": "https://serpapi.com/searches/3952ad2634546fdd/642ebe1d15afff0695b881a4.html",
    "total_time_taken": 1.37
  },
  "search_parameters": {
    "engine": "bing_videos",
    "q": "pizza",
    "device": "desktop"
  },
  "search_information": {
    "video_results_state": "Results for exact spelling",
    "query_displayed": "pizza",
    "total_results": 375000000,
    "time_taken_displayed": 0.3
  },
  "video_results": [
    {
      "title": "The Best Pizza You'll Ever Make | Epicurious 101",
      "link": "https://www.youtube.com/watch?v=mRx_odAj-XQ",
      "thumbnail": "https://tse4.mm.bing.net/th?id=OVP.PnuuhTuqaBBN3ApJuTbQzwHgFo&w=243&h=136&c=7&rs=1&qlt=90&o=5&pid=2.1",
      "date": "Apr 18, 2023",
      "source": "YouTube",
      "channel": "Epicurious",
      "channel_thumbnail": "https://th.bing.com/th?id=OVT1.0LDDnSBr4mzGDeJOI75N_Q&w=50&h=50&pid=2.1",
      "length": "8:03",
      "views": "303.6K views",
      "extracted_views": 303600,
      "position": 1
    },
    {
      "title": "How to Make Perfect Homemade Pizza! Best Pizza …",
      "link": "https://www.youtube.com/watch?v=MDX8fylSisU",
      "thumbnail": "https://tse3.mm.bing.net/th?id=OVP.y-RDYJuBN9waN80W3w34QAHgFo&w=243&h=136&c=7&rs=1&qlt=90&o=5&pid=2.1",
      "date": "7 months ago",
      "source": "YouTube",
      "channel": "Fast & Easy Recipes",
      "channel_thumbnail": "https://th.bing.com/th?id=OVT1.V-iEI9SYMqk3ef20iGWB-A&w=50&h=50&pid=2.1",
      "length": "8:34",
      "views": "2.2M views",
      "extracted_views": 2200000,
      "position": 2
    },
    {
      "title": "How Una Pizza Napoletana Became the No. 1 Ranked Piz…",
      "link": "https://www.youtube.com/watch?v=ADvf-PIZPLA",
      "thumbnail": "https://tse1.mm.bing.net/th?id=OVP.8Se170lmHaqxpT06kL3jQwEsDh&w=243&h=136&c=7&rs=1&qlt=90&o=5&pid=2.1",
      "date": "Feb 1, 2023",
      "source": "YouTube",
      "channel": "Eater",
      "channel_thumbnail": "https://th.bing.com/th?id=OVT1.wtD8bvSLwVAzXH4E4aemXA&w=50&h=50&pid=2.1",
      "length": "15:16",
      "views": "5.9M views",
      "extracted_views": 5900000,
      "position": 3
    },
  ...
  ],
  "suggested_search_results": [
    {
      "title": "Best Pizza Recipe",
      "link": "https://www.bing.com/videos/search?q=Best+Pizza+Recipe&FORM=RESTAB",
      "thumbnail": "https://tse1.mm.bing.net/th?q=Best+Pizza+Recipe&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",
      "position": 1
    },
    {
      "title": "Pizza Dough",
      "link": "https://www.bing.com/videos/search?q=Pizza+Dough&FORM=RESTAB",
      "thumbnail": "https://tse2.mm.bing.net/th?q=Pizza+Dough&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",
      "position": 2
    },
    {
      "title": "Pizza at Home",
      "link": "https://www.bing.com/videos/search?q=Pizza+at+Home&FORM=RESTAB",
      "thumbnail": "https://tse1.mm.bing.net/th?q=Pizza+at+Home&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",
      "position": 3
    },
    ...
  ],
  "shopping_results": [
    {
      "title": "Weisenberger Pizza Crust Mix - Pizza Dough Mix For Homemade Pizza - Pizza Flour Mix For Pizza Crust Dough In Minutes - Premade Pizza Dough Fresh",
      "price": "$34.99",
      "extracted_price": 34.99,
      "link": "https://www.bing.com/aclick?ld=e8ndBzWLn8oBCmAEy4_7uh4jVUCUzJDLUpgJa0AbTpy4kn_xvv1CcAa_cQ8BsB6jpjUj8m49MbFuvXZXPHwoJpryPtveVO-DOgBrFRSZnXIV-eGizG0t3xJC4_dlpI5-koO9OgEkpihyJ8eRBkBRAZBF6ySBouLSvHVdOdkMn8kvDjxixVr1XtyU139EiDsaUS82fNCA&u=aHR0cHMlM2ElMmYlMmZ3d3cuYW1hem9uLmNvbSUyZldlaXNlbmJlcmdlci1QaXp6YS1DcnVzdC1NaXgtNi01LU91bmNlJTJmZHAlMmZCMDA0NzNVTEEwJTJmcmVmJTNkYXNjX2RmX0IwMDQ3M1VMQTAlM2Z0YWclM2RiaW5nc2hvcHBpbmdhLTIwJTI2bGlua0NvZGUlM2RkZjAlMjZodmFkaWQlM2Q4MDc0NTQzNzEzNDQ2NyUyNmh2bmV0dyUzZG8lMjZodnFtdCUzZGUlMjZodmJtdCUzZGJlJTI2aHZkZXYlM2RjJTI2aHZsb2NpbnQlM2QlMjZodmxvY3BoeSUzZCUyNmh2dGFyZ2lkJTNkcGxhLTQ1ODQzNDUwMTYyODI3MTUlMjZwc2MlM2Qx&rlid=3326ff5b25b81cfb84f29971a0c92609",
      "thumbnail": "https://tse3.mm.bing.net/th?id=OPHS.fcSn2wrKYlAO%2fg474C474&w=160&h=220&rs=1&o=5&pid=21.1",
      "seller": "Amazon.com",
      "position": 1
    },
    {
      "title": "Schar Gluten-Free Pizza Crust 2-Count - 4/Case",
      "price": "$31.99",
      "extracted_price": 31.99,
      "link": "https://www.bing.com/aclick?ld=e8U8ve4GITRFWg3mMTDaTbgTVUCUz-EzOZQ9sIwmJwIme8QhADcSaOT8bx-_wphDOGgnQYzZFgQMcQD7dvevr2-1aa7LMacqRJqs4ZeebfkiOYzyABBlebI6Ag5KXMJKHY2CVi7Y7tam08acF6O1ItLA23UWxWtslFIRFgeOFX0Bsk_7LKvvBpSdTb_PN0WPkotyrATg&u=aHR0cHMlM2ElMmYlMmZ3d3cud2Vic3RhdXJhbnRzdG9yZS5jb20lMmZzY2hhci1nbHV0ZW4tZnJlZS1waXp6YS1jcnVzdC0yLWNvdW50LWNhc2UlMmY4NzZEUlMxMDgwMC5odG1sJTNmbXNjbGtpZCUzZGVkMjI5YjhlMzMyMDEwNTY3NjQ2ZmRhNGI2NTFlOTM5JTI2dXRtX3NvdXJjZSUzZGJpbmclMjZ1dG1fbWVkaXVtJTNkY3BjJTI2dXRtX2NhbXBhaWduJTNkQ29uc3VtYWJsZXMlMjUyMCUyNTdDJTI1MjBTaG9wcGluZyUyNTIwTVAlMjUyMCUyNTdDJTI1MjBOb24lMjUyMFB1cmNoYXNlciUyNnV0bV90ZXJtJTNkNDU4MjYyNzA2OTUyODQwOCUyNnV0bV9jb250ZW50JTNkQmFrZWQlMjUyMEdvb2RzJTI1MjBhbmQlMjUyMERlc3NlcnRz&rlid=ed229b8e332010567646fda4b651e939",
      "thumbnail": "https://tse3.mm.bing.net/th?id=OPHS.oFQFZlV%2f30yPig474C474&w=185&h=220&rs=1&o=5&pid=21.1",
      "seller": "WebstaurantStore",
      "position": 2
    },
    {
      "title": "Pizzeria Uno Deep Dish Pepperoni Pizza 7\" - 30/Case",
      "price": "$142.49",
      "extracted_price": 142.49,
      "link": "https://www.bing.com/aclick?ld=e8zK9z1WqPJ9ft_GSntvC0jDVUCUzlB_bKnWW2Qa75Osp_zXjevHA-kXDtque1Awds20WMPjksj4HvZGJO9KQPDq7Gsm30PTVZL83U0eRBovgee4MasUJlWb18yS20xHrNyttI23qmiiGvDZmdl1AMqyMEUzYauDxYgBhjmRrGT5cCDkvlfdnP1l9j2R_3W0Y2xkSCwg&u=aHR0cHMlM2ElMmYlMmZ3d3cud2Vic3RhdXJhbnRzdG9yZS5jb20lMmZ1bm8tZm9vZHMtNy1pbmNoLWRlZXAtZGlzaC1wZXBwZXJvbmktcGl6emEtMzAtZWFjaC0xLXBlci1jYXNlJTJmODc4VU5PNDEwNTcuaHRtbCUzZm1zY2xraWQlM2RhMmE0MTgxMzI2MzYxZjQ4MzhjNTdlMzlhMzQ3ODUwNyUyNnV0bV9zb3VyY2UlM2RiaW5nJTI2dXRtX21lZGl1bSUzZGNwYyUyNnV0bV9jYW1wYWlnbiUzZENvbnN1bWFibGVzJTI1MjAlMjU3QyUyNTIwU2hvcHBpbmclMjUyME1QJTI1MjAlMjU3QyUyNTIwTm9uJTI1MjBQdXJjaGFzZXIlMjZ1dG1fdGVybSUzZDQ1ODMxMDgxMDMxMDkwMzMlMjZ1dG1fY29udGVudCUzZFByZXBhcmVkJTI1MjBGb29kcw&rlid=a2a4181326361f4838c57e39a3478507",
      "thumbnail": "https://tse1.mm.bing.net/th?id=OPHS.NxoQI3AjKdJQOQ474C474&w=200&h=220&rs=1&o=5&pid=21.1",
      "seller": "WebstaurantStore",
      "position": 3
    },
    ...
  ],
  "related_search_results": [
    {
      "title": "Pizza Crust",
      "link": "https://www.bing.com/videos/search?q=Pizza+Crust&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse2.mm.bing.net/th?q=Pizza+Crust&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 1
    },
    {
      "title": "Pizza Dough Recipe",
      "link": "https://www.bing.com/videos/search?q=Pizza+Dough+Recipe&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse2.mm.bing.net/th?q=Pizza+Dough+Recipe&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 2
    },
    {
      "title": "Margherita Pizza",
      "link": "https://www.bing.com/videos/search?q=Margherita+Pizza&qft=&FORM=VRIBQP",
      "thumbnail": "https://tse1.mm.bing.net/th?q=Margherita+Pizza&w=200&h=120&c=1&rs=1&qlt=90&o=5&pid=InlineBlock&mkt=en-US&cc=US&setlang=en&adlt=moderate&t=1&mw=247",
      "position": 3
    },
    ...
  ],
  "ads_results": [
    {
      "title": "Domino’s® Pizza Online | Domino’s® Pizza | Domino's® Near You",
      "description": "Find The Domino's® Near You Online. Easy & Convenient. Order Now! Sign Up for Domino’…",
      "review": "...By Far Our Editors' Preferred Pizza... – Epicurious",
      "review_link": "http://www.epicurious.com/articlesguides/blogs/editor/2014/01/taste-test-pizza-delivery.html",
      "link": "https://www.bing.com/aclick?ld=e8guMHYXWovbR0MMdqRXeN-jVUCUynpE9gr276X9ngbsYPcyKHoXPBXxMwQLegrXo6owb-jD6GGWeIlr_Ov6hRb8LgYrip2X4il2UBKFH-k1T0MB3sS4nV8L50uJnCa9FEM1zlpAjwSHzZFD3L-C18NAxKjPdcBhTT2aZUKNSY4TDFoc71U1v02_AT2naBh03--twA4A&u=aHR0cHMlM2ElMmYlMmZ3d3cuZG9taW5vcy5jb20lMmZlbiUyZiUzZnV0bV9jYW1wYWlnbiUzZDUyNDc3NTY5JTdjYyU3Y0JHJTdjTkJfTm9uX0JyYW5kZWRfUGl6emFfT25seSUyNnV0bV9zb3VyY2UlM2RCaW5nJTI2dXRtX21lZGl1bSUzZHBfc2VhcmNoJTI2dXRtX2NvbnRlbnQlM2Rrd2QtMTU0NjgxNTY1ODMlM2Fsb2MtMTkwJTdjNTI0Nzc1NjklN2MyNDMyMDY4NzY0JTI2dXRtX3Rlcm0lM2RwaXp6YSUyNm1hdGNodHlwZSUzZGJlJTI2bXNjbGtpZCUzZDM4MjVmMWRhNTJjZDExOTlhNTQ3OTdmMGQ3YmMyMDNl&rlid=3825f1da52cd1199a54797f0d7bc203e",
      "displayed_link": "https://www.dominos.com",
      "sitelinks": [
        {
          "title": "View Menu",
          "link": "https://www.bing.com/aclick?ld=e8ppde7TnLVGzNrpvGkOJUkzVUCUxcCneoKH3ydIoK2LHa7uxZdH4WIEw3bX4Ux9cU1Xa3lA5MgwgJj8nEBF5XqCoi7F6dppTjKdUvEMTeiktMG6yBsJGPPJKNnnj52fL9atzx7GFtxqAWzE7-ndyb4YMv072PdFIHUfAZd4hCxaoGgYQFLW4NTlPxUxjSEx9zJUnnWRXJ1a3cEb2oDEjMW0yoV14&u=aHR0cHMlM2ElMmYlMmZ3d3cuZG9taW5vcy5jb20lMmZlbiUyZnBhZ2VzJTJmb3JkZXIlMmZtZW51JTNmdXRtX2NhbXBhaWduJTNkNTI0Nzc1NjklN2NjJTdjQkclN2NOQl9Ob25fQnJhbmRlZF9QaXp6YV9Pbmx5JTI2dXRtX3NvdXJjZSUzZEJpbmclMjZ1dG1fbWVkaXVtJTNkcF9zZWFyY2glMjZ1dG1fY29udGVudCUzZGt3ZC0xNTQ2ODE1NjU4MyUzYWxvYy0xOTAlN2M1MjQ3NzU2OSU3YzI0MzIwNjg3NjQlMjZ1dG1fdGVybSUzZHBpenphJTI2bWF0Y2h0eXBlJTNkYmUlMjZtc2Nsa2lkJTNkYTEzNzA2NTIwYmJlMWYzNDBiYTY2MDc4OGVjZjgwOTg&rlid=a13706520bbe1f340ba660788ecf8098"
        },
        {
          "title": "Order Online",
          "link": "https://www.bing.com/aclick?ld=e8B65Y1DgGn0Z_hUJ-R5odFTVUCUyma8c-q75ruRUm6TcRE17c-hJ1QGbRZrKf3ZUL2FlNp25g8EFzSoPA8zKmqZNyKW9jaj5NodukOdYR-CoPl3ffH9-vvR-pQUVVtiEMFNyJ0Dx6V0kT52JMKnAqh1EbTGRw-ksPrDgK_FCqgqh9eZEmKHPlylW9AMIkcv8j9EeVL7lrAyg6AJtLrvTqV76NTYs&u=aHR0cHMlM2ElMmYlMmZ3d3cuZG9taW5vcy5jb20lMmZlbiUyZnBhZ2VzJTJmb3JkZXIlMmYlM2Z1dG1fY2FtcGFpZ24lM2Q1MjQ3NzU2OSU3Y2MlN2NCRyU3Y05CX05vbl9CcmFuZGVkX1BpenphX09ubHklMjZ1dG1fc291cmNlJTNkQmluZyUyNnV0bV9tZWRpdW0lM2RwX3NlYXJjaCUyNnV0bV9jb250ZW50JTNka3dkLTE1NDY4MTU2NTgzJTNhbG9jLTE5MCU3YzUyNDc3NTY5JTdjMjQzMjA2ODc2NCUyNnV0bV90ZXJtJTNkcGl6emElMjZtYXRjaHR5cGUlM2RiZSUyNm1zY2xraWQlM2RlYWFjOWY5MmM1NTMxMDg0Njk2OGY5Yjg0MDIyZjJhNg&rlid=eaac9f92c55310846968f9b84022f2a6"
        },
        {
          "title": "Specialty Pizzas",
          "link": "https://www.bing.com/aclick?ld=e8_M_VylYCtZSlXrEzlk3mxjVUCUxY4PLJkNegSlxjoca6SrGqDspyjcqL8N5gvj5kQ5fiPIsbY-5Z68zhXAOK8eOrnZnNCqKCNzwQKfQscj8NaJPjTYmxaPPaRg25YxTjBOIv7xRqc0xiDnRxXbz0JgcFsBT2yTZ9ocvRMqHref4TV7d4xpAggf--Z2C77VHz5aUHqjdweq9r9zi5OAM_tUOhllg&u=aHR0cHMlM2ElMmYlMmZ3d3cuZG9taW5vcy5jb20lMmZlbiUyZnBhZ2VzJTJmb3JkZXIlMmZtZW51JTNmdXRtX2NhbXBhaWduJTNkNTI0Nzc1NjklN2NjJTdjQkclN2NOQl9Ob25fQnJhbmRlZF9QaXp6YV9Pbmx5JTI2dXRtX3NvdXJjZSUzZEJpbmclMjZ1dG1fbWVkaXVtJTNkcF9zZWFyY2glMjZ1dG1fY29udGVudCUzZGt3ZC0xNTQ2ODE1NjU4MyUzYWxvYy0xOTAlN2M1MjQ3NzU2OSU3YzI0MzIwNjg3NjQlMjZ1dG1fdGVybSUzZHBpenphJTI2bWF0Y2h0eXBlJTNkYmUlMjZtc2Nsa2lkJTNkNzk2NzI1Y2Q5ZjdhMWNmMmQ3MTE0M2U3MWEwYjRhMGIlMjMhJTJmbWVudSUyZmNhdGVnb3J5JTJmc3BlY2lhbHR5LXBpenphcyUyZg&rlid=796725cd9f7a1cf2d71143e71a0b4a0b"
        },
        {
          "title": "Coupons",
          "link": "https://www.bing.com/aclick?ld=e8bi4t0onTIU7YhNh_1bnJajVUCUxIudaRQieuNAuXAbqfIck6h_N-9FDQaXFRP1iHTzqpxgtLVMwwbiNG8HXLvkduYii-VZliy5H4N-mlN7qgmvJEx19wkiSbC9VArowp9VzGgBWUakHYAVknxyNbnnn_uMr2XI-mWsGjZ7EkGiJJgb-0nP1lTrzytCZX4FCxVhjQmORxARLYu4aqCMj4o9irkqQ&u=aHR0cHMlM2ElMmYlMmZ3d3cuZG9taW5vcy5jb20lMmZlbiUyZnBhZ2VzJTJmb3JkZXIlMmZjb3Vwb24lM2Z1dG1fY2FtcGFpZ24lM2Q1MjQ3NzU2OSU3Y2MlN2NCRyU3Y05CX05vbl9CcmFuZGVkX1BpenphX09ubHklMjZ1dG1fc291cmNlJTNkQmluZyUyNnV0bV9tZWRpdW0lM2RwX3NlYXJjaCUyNnV0bV9jb250ZW50JTNka3dkLTE1NDY4MTU2NTgzJTNhbG9jLTE5MCU3YzUyNDc3NTY5JTdjMjQzMjA2ODc2NCUyNnV0bV90ZXJtJTNkcGl6emElMjZtYXRjaHR5cGUlM2RiZSUyNm1zY2xraWQlM2Q2M2Q3NWE0OTQ5MzExYzNhZThlMTNjNjNjYzQwY2NmZQ&rlid=63d75a4949311c3ae8e13c63cc40ccfe"
        }
      ],
      "position": 1
    }
  ],
  ...
}