Add product recommendations to your website
You just call our API when a user interacts with your products and get recommendations. We take care of the rest.
What we offer
Very easy setup - just call our 2 endpoints
Two months free trial
No credit card needed for the free trial
Documentation
All you need to do is use our two endpoints:
1. Register event (user visits a product, user adds a product to his cart, user purchases a product, etc.) with a different weight, that depends on you.
POST https://api.recommendmee.com/register-event
{ "licenseKey": "cus_123456", // you will receive it by email when you start your free 60 days trial "env": "dev", // or test/uat/prod, whatever you like "weight": 10, // for example 1 when user visits the page of the product, 3 when adds it in his cart, 5 when purchases it, etc.. "productIdentifier": '3ntk-235b-43b6-243b', // your product id "productData": { // you can put any data you want here and it will be returned from the /get-recommendations endpoint later "name": "aaaa", "url": "https://...", "pictureUrl": "https://..", "price": 123, }, "userIdentifier": "kjh3-f23b-erwg-3few" // optional parameter (the user IP address will be used by default) }
2. Get recommendations (when the user visits a page of any of your products)
POST https://api.recommendmee.com/get-recommendations
{ "env": "dev", "licenseKey": "cus_123456", "productIdentifier": "3ntk-235b-43b6-243b", "recommendationsCount": 4 // how many recommended product you want to get }
You can also check out our swagger.