Google Search API Search Image by Image URL

I am working on an application that will be able to upload images to users. After downloading, the application will display other images from the Internet that look exactly the same, regardless of whether they are the same size.

To do this, I will create a temporary URL for the image so that I can provide the Google Custom Search API with the image URL. I would expect, in response, the URLs of images that were exactly the same or similar to it, possibly in JSON format.

I found a similar question posted in January. Until then, Google did not support anything like this, obviously:

Google Javascript Custom Search API: Image Search by Image URL

You can also simply:

http://images.google.com/searchbyimage?site=search&image_url= {image URL}

Since this is not part of the official API, it may not be correct to use this method.

Can someone help me?

+7
api search
source share
2 answers

Well, the answer is pretty simple - the commercial TinEye API https://api.tineye.com/welcome . I was not looking for a place that I think was unlucky with the Google Custom Search API.

+3
source share

Do you need a simple result?
If so, you can use the Google Vision API.
It is very simple.

https://cloud.google.com/vision/


You can try it from above.

First, refer to the url.
Secondly, upload your image file to the "Try API"
Third, click on the β€œJSON” tab on the tab.

You can see JSON about similar images.

0
source share

All Articles