I am trying to find where all the same image has come. For example if I have the URL to an image A, what all websites does image A appear. I tried using the Bing Visual Search API, however, it shows me similar images. Here is the code I use:
IMG_URL = '<IMAGE URL>'
url_struct = '{"imageInfo":{"url":"' + IMG_URL + '"}}'
headers = {
'Ocp-Apim-Subscription-Key': '<API-KEY>',
}
params = (
('mkt', 'en-us'),
)
files = {
'knowledgeRequest': (None, url_struct),
}
response = requests.post('https://api.bing.microsoft.com/v7.0/images/visualsearch', headers=headers, params=params, files=files)
I know for sure that the same image appears at at least one other place. What should i do to get the same image and not similar ones?

