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.

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  "dataset1_ids": [
8    "GYVCj4hEeqnX3dJyu"
9  ],
10  "dataset2_ids": [
11    "OmzHV4VEByO4KohMF"
12  ],
13  "input_mapping": {
14    "eshop1": {
15      "id": "url",
16      "name": "name",
17      "price": "price",
18      "short_description": "shortDescription",
19      "long_description": "longDescription",
20      "specification": "specification",
21      "code": [
22        "sku",
23        "productModel"
24      ]
25    },
26    "eshop2": {
27      "id": "url",
28      "name": "name",
29      "price": "price",
30      "short_description": "shortDescription",
31      "long_description": "longDescription",
32      "specification": "specification",
33      "code": [
34        "sku",
35        "productModel"
36      ]
37    }
38  }
39}
40EOF
41
42# Run the Actor using an HTTP API
43# See the full API reference at https://docs.apify.com/api/v2
44curl "https://api.apify.com/v2/acts/equidem~ai-product-matcher/runs?token=$API_TOKEN" \
45  -X POST \
46  -d @input.json \
47  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 21 monthly users
  • 5 stars
  • 40.7% runs succeeded
  • Created in Apr 2023
  • Modified about 1 month ago