■Smart recommendations for Algerian stores
Turn Your Visitors Into Real Buyers
Kliki shows every shopper the products they're most likely to buy — so you sell more without any extra work.
Kliki
Workspaces
Events
API Keys
Insights
Why Stores Choose Kliki
Old tools guess. Kliki knows. That's the difference for your store.
Traditional Tools
- ✕ Shows the same products to every customer
- ✕ Needs weeks of setup and data collection
- ✕ Expensive to maintain and update
- ✕ Gets it wrong for new customers
Kliki
- ✓ Learns what your customers want instantly
- ✓ Updates in real time with every visit
- ✓ No setup cost — ready to use
- ✓ Adapts to each customer, every visit
More Sales. Less Effort.
Kliki works quietly in the background — showing the right product, to the right customer, at the right moment.
Grow Every Order
When a customer views a product, Kliki instantly suggests what similar shoppers bought. More relevance means bigger carts.
Bring Customers Back
Kliki remembers what each customer viewed and bought — so their next visit feels personal, not random.
Sell Your Whole Catalog
Stop losing sales on forgotten products. Kliki surfaces items from across your store based on what similar customers loved.
Plug In and Go
Connect Kliki to your store in minutes — no technical team needed. Start showing smart recommendations the same day.
Your data, protected: Your store's data stays private and secure, always.
See results live: Track sales, clicks, and activity from one simple dashboard.
Works everywhere: Add Kliki to any store, website, or app you already run.
Your Store
Products
Customers
Sales
Set It Up Once. Sell More Every Day.
- Quick setup: Connect your store and you're live in minutes.
- Always up to date: Recommendations improve automatically as customers shop.
- Fits any store: Works with online stores, marketplaces, and apps.
recommender.ts
// 1. Initialize your client with the workspace API key
const engine = new Kliki(API_KEY);
// 2. Track the user action for this instance
await engine.track({
user: 'user_99',
action: 'purchase',
items: ['prod_1', 'prod_2'],
metadata: { wilaya: 'alger', platform: 'mobile' }
});
// 3. Request recommendations for the same instance
const suggestions = await engine.getSimilar(
'user_99',
{ limit: 10 }
);