What is Bing news search API?

Mike Ubezzi 2,776 Reputation points
2020-05-13T00:41:34.537+00:00

"How can I use the Bing news search API to plugin with my website to feed news results for relevant topics?"

[Note: As we migrate from MSDN, this question has been posted by an Azure Cloud Engineer as a frequently asked question] Source: MicrosoftDocs

Bing News Search
Bing News Search
A Bing service that supports searching for news and get comprehensive results.
43 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ramr-msft 17,611 Reputation points
    2020-05-13T09:18:00.917+00:00

    The Bing News Search API is a RESTful web service, making it easy to call from any programming language that can make HTTP requests and parse JSON. You can use the service using either the REST API, or the SDK.

    Create a Cognitive Services API account with access to the Bing Search APIs. If you don't have an Azure subscription, you can create an account for free.

    Send a request to the API, with a valid search query.

    Process the API response by parsing the returned JSON message.

    Also, try the interactive demo for the Bing News Search API. This demo shows how you can quickly customize a search query and find news on the web.

    https://azure.microsoft.com/services/cognitive-services/bing-news-search-api/

    Source: Azure Docs

    0 comments No comments