Skip to main content
GET
/
recommenders
curl https://api2.ecomailapp.cz/recommenders \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "recommender_id": "6789abc123def",
    "feed_id": 1,
    "shop_id": "my-shop",
    "last_trained_timestamp": 1710000000,
    "status": "ready",
    "settings": {
      "filtered_products": [],
      "filtered_categories": [],
      "included_months": []
    }
  }
]
Returns a list of recommender objects, each containing the recommender ID, associated shop and feed, training status and settings.
Recommender status values: created (just created, waiting to train), training (currently training on EMR), ready (trained and serving recommendations).
curl https://api2.ecomailapp.cz/recommenders \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "recommender_id": "6789abc123def",
    "feed_id": 1,
    "shop_id": "my-shop",
    "last_trained_timestamp": 1710000000,
    "status": "ready",
    "settings": {
      "filtered_products": [],
      "filtered_categories": [],
      "included_months": []
    }
  }
]