Bing Search API

Bing helps you turn information into action, making it faster and easier to go from searching to doing.

Base URL

"https://openapi-idk8.onrender.com"

Endpoints

  • GET /bing-search: Perform a web search and retrieve search results.

GET /bing-search

Performs a web search and retrieves search results from Bing.

Query Parameters

  • q (string): The search query. This parameter is required.

Sample Request

GET "https://openapi-idk8.onrender.com/bing-search?q=cat"

Sample Response

{
  "query": "cat",
  "count": 7,
  "name": "Bing Search",
  "description": "Bing helps you turn information into action, making it faster and easier to go from searching to doing.",
  "author": "OpenAPI",
  "searchResults": [
    {
      "title": "Funniest Cats - Don't try to hold back ... - YouTube",
      "description": "Oct 29, 2020 · Funniest Cats 😹 - Don't try to hold back Laughter 😂 😍 Watch more cute animals! https://youtube.com/playlist?list=PLH.. . 🔔 Subscribe to watch the best, cutest animal …",
      "url": "https://www.youtube.com/watch?v=eX2qFMC8cFo"
    },
    {
      "title": "Felidae - Wikipedia",
      "description": "Felidae ( / ˈfɛlɪdiː /) is the family of mammals in the order Carnivora colloquially referred to as cats. A member of this family is also called a felid ( / ˈfiːlɪd / ). [3] [4] [5] [6] The term \"cat\" refers both to felids in general and specifically to the domestic cat ( Felis catus ). [7]",
      "url": "https://en.wikipedia.org/wiki/Felidae"
    },
    ...
    
    // More Results Here...

Error Handling

If there is an error or the q parameter is missing, the API responds with an appropriate error message and status code.