AI Product Matcher avatar

AI Product Matcher

Try for free

No credit card required

View all Actors
AI Product Matcher

AI Product Matcher

equidem/ai-product-matcher
Try for free

No credit card required

Match products across multiple e-commerce websites. Use this AI product matching Actor whenever you need to find matching pairs of products from different online shops for dynamic pricing, competitor analysis or market research.

Do you want to learn more about this Actor?

Get a demo

You can access the AI Product Matcher programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "dataset1_ids": ["GYVCj4hEeqnX3dJyu"],
10    "dataset2_ids": ["OmzHV4VEByO4KohMF"],
11    "input_mapping": {
12        "eshop1": {
13            "id": "url",
14            "name": "name",
15            "price": "price",
16            "short_description": "shortDescription",
17            "long_description": "longDescription",
18            "specification": "specification",
19            "code": [
20                "sku",
21                "productModel",
22            ],
23        },
24        "eshop2": {
25            "id": "url",
26            "name": "name",
27            "price": "price",
28            "short_description": "shortDescription",
29            "long_description": "longDescription",
30            "specification": "specification",
31            "code": [
32                "sku",
33                "productModel",
34            ],
35        },
36    },
37}
38
39# Run the Actor and wait for it to finish
40run = client.actor("equidem/ai-product-matcher").call(run_input=run_input)
41
42# Fetch and print Actor results from the run's dataset (if there are any)
43print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
44for item in client.dataset(run["defaultDatasetId"]).iterate_items():
45    print(item)
46
47# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

🎯 Match products with AI API in Python

The Apify API client for Python is the official library that allows you to use AI Product Matcher API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Apify
Actor metrics
  • 22 monthly users
  • 8 stars
  • 85.0% runs succeeded
  • 26 days response time
  • Created in Apr 2023
  • Modified 4 months ago