Google Lens - Image Sources avatar
Google Lens - Image Sources
Try for free

No credit card required

View all Actors
Google Lens - Image Sources

Google Lens - Image Sources

useful-tools/google-lens-image-sources
Try for free

No credit card required

This actor allows you to find similar image sources via the Google Lens with some additional meta information like original image size on the source webpage.

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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        {
12            "url": "https://thumbs.dreamstime.com/z/beagle-dog-isolated-white-background-purebred-103538194.jpg"
13        },
14        {
15            "url": "https://images.megapixl.com/4976/49769857.jpg"
16        }
17    ],
18    "proxyConfiguration": {
19        "useApifyProxy": true
20    }
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("useful-tools/google-lens-image-sources").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
30    const { items } = await client.dataset(run.defaultDatasetId).listItems();
31    items.forEach((item) => {
32        console.dir(item);
33    });
34})();
35
36// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 19 monthly users
  • 3 stars
  • 84.2% runs succeeded
  • 1.5 days response time
  • Created in Jul 2023
  • Modified 9 months ago
Categories