AI Product Matcher

Pay $10.00 for 1,000 results

AI Product Matcher

AI Product Matcher

equidem/ai-product-matcher

Pay $10.00 for 1,000 results

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 mode

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "dataset1_ids": [
    "GYVCj4hEeqnX3dJyu"
  ],
  "dataset2_ids": [
    "OmzHV4VEByO4KohMF"
  ],
  "input_mapping": {
    "eshop1": {
      "id": "url",
      "name": "name",
      "price": "price",
      "short_description": "shortDescription",
      "long_description": "longDescription",
      "specification": "specification",
      "code": [
        "sku",
        "productModel"
      ]
    },
    "eshop2": {
      "id": "url",
      "name": "name",
      "price": "price",
      "short_description": "shortDescription",
      "long_description": "longDescription",
      "specification": "specification",
      "code": [
        "sku",
        "productModel"
      ]
    }
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/equidem~ai-product-matcher/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor stats
  • 119 users
  • 368 runs
  • Modified about 2 months ago

You might also like these Actors