Google Reverse Image Search API  ✅ Free avatar
Google Reverse Image Search API ✅ Free
Try for free

No credit card required

View all Actors
Google Reverse Image Search API  ✅ Free

Google Reverse Image Search API ✅ Free

curious_coder/google-lens-scraper
Try for free

No credit card required

Features: ▶ API to search by image on Google ▶ Search and scrape similar images and source websites ▶ Extract text from given image using google lens

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "urls": [
8    "https://imageio.forbes.com/specials-images/imageserve/62d700cd6094d2c180f269b9/0x0.jpg?format=jpg&crop=959,959,x0,y0,safe&height=416&width=416&fit=bounds",
9    "https://upload.wikimedia.org/wikipedia/commons/1/18/Mark_Zuckerberg_F8_2019_Keynote_%2832830578717%29_%28cropped%29.jpg"
10  ],
11  "searchType": "findImageSources",
12  "proxy": {
13    "useApifyProxy": true,
14    "apifyProxyGroups": [
15      "RESIDENTIAL"
16    ],
17    "apifyProxyCountry": "US"
18  }
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/curious_coder~google-lens-scraper/runs?token=$API_TOKEN" \
25  -X POST \
26  -d @input.json \
27  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 18 monthly users
  • 1 star
  • 96.8% runs succeeded
  • 0.8 hours response time
  • Created in Sep 2023
  • Modified 3 days ago