AI Product Matcher avatar
AI Product Matcher

Pricing

Pay per usage

Go to Store
AI Product Matcher

AI Product Matcher

Developed by

Matěj Sochor

Matěj Sochor

Maintained by Community

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.

0.0 (0)

Pricing

Pay per usage

14

Total users

567

Monthly users

35

Runs succeeded

90%

Last modified

3 months ago

You can access the AI Product Matcher programmatically from your own 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: