How to perform a reverse image search using Bing Image Search API?

5.7k Views Asked by At

Trying to figure out how to perform a "Reverse Image Search" using the Bing Image Search API.

Basically looking for a way to programmatically do what Bing provides if you go to the Images search page (https://www.bing.com/images), click the Camera, and upload a picture to search on.

1

There are 1 best solutions below

3
On

For the already Bing indexed images, you can use the following API call:

curl -v -X GET "https://api.cognitive.microsoft.com/bing/v7.0/images/details?imgurl=YOUR_IMAGE_URL&mkt=en-us&modules=similarimages" -H "Ocp-Apim-Subscription-Key: YOUR_ACCESS_KEY".

This will give you similar images for the given URL.