ALEFBA – Shop More, Live Better
Clothing and fashion products are limited
One API to manage your store on the AI-driven marketplace: products, stock and orders — from your own software.
v1 · Early access Public Catalog API ↓Create a key in your seller dashboard (Account → API keys) and send it as a Bearer token. All requests over HTTPS.
# Health check curl https://alefba.eu/api/v1/ping.php \ -H "Authorization: Bearer alefba_live_xxxxxxxx"
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/products.php | List your products |
| GET | /api/v1/products.php?id=… | One product |
| POST | /api/v1/products.php | Create a product |
| PUT | /api/v1/products.php?id=… | Update price, stock, status… |
| GET | /api/v1/orders.php | List your orders |
| GET | /api/v1/orders.php?id=… | Order details & your items |
Browse the ALEFBA catalog with no API key required. Free for developers, price comparison tools and AI agents.
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/catalog | List public products |
Parameters:
page (default 1) ·
limit (default 20, max 50)
# No authentication needed curl "https://alefba.eu/api/catalog?limit=3" # → {"success":true,"data":{"page":1,"limit":3,"total":0,"products":[]}}
curl -X PUT "https://alefba.eu/api/v1/products.php?id=123" \ -H "Authorization: Bearer alefba_live_xxxxxxxx" \ -H "Content-Type: application/json" \ -d '{"stock": 42, "price": 899.00}' # → {"success":true,"data":{"id":123,"message":"Product updated."}}