{"success":true,"message":"SR Luxe E-commerce Backend Running...","version":"2.0.0","endpoints":{"auth":{"register":"POST /api/users/register","login":"POST /api/users/login","profile":"GET /api/users/profile"},"products":{"getAll":"GET /api/products","getById":"GET /api/products/:id","getBySlug":"GET /api/products/slug/:slug","featured":"GET /api/products/featured","search":"GET /api/products/search?q=query","byCategory":"GET /api/products/category/:categoryId","bySubcategory":"GET /api/products/subcategory/:subcategoryId"},"categories":{"getAll":"GET /api/categories","getById":"GET /api/categories/:id","getBySlug":"GET /api/categories/slug/:slug","withSubcategories":"GET /api/categories/with-subcategories","subcategories":"GET /api/categories/:id/subcategories"},"cart":{"getCart":"GET /api/cart","addItem":"POST /api/cart/add","updateItem":"PUT /api/cart/update","removeItem":"DELETE /api/cart/remove","clearCart":"DELETE /api/cart/clear","getCount":"GET /api/cart/count","getTotal":"GET /api/cart/total"},"orders":{"createOrder":"POST /api/orders","getUserOrders":"GET /api/orders","getOrderById":"GET /api/orders/:id","getOrderByNumber":"GET /api/orders/number/:orderNumber","cancelOrder":"PUT /api/orders/:id/cancel","getOrderItems":"GET /api/orders/:id/items","getStatusHistory":"GET /api/orders/:id/status-history"},"addresses":{"createAddress":"POST /api/addresses","getUserAddresses":"GET /api/addresses","getAddressById":"GET /api/addresses/:id","updateAddress":"PUT /api/addresses/:id","deleteAddress":"DELETE /api/addresses/:id","setDefault":"PUT /api/addresses/:id/set-default","getDefault":"GET /api/addresses/default/:type","getByType":"GET /api/addresses/type/:type"},"admin":{"createProduct":"POST /api/products","updateProduct":"PUT /api/products/:id","deleteProduct":"DELETE /api/products/:id","createCategory":"POST /api/categories","updateCategory":"PUT /api/categories/:id","deleteCategory":"DELETE /api/categories/:id","getAllOrders":"GET /api/orders/admin/all","getOrderStats":"GET /api/orders/admin/stats","updateOrderStatus":"PUT /api/orders/:id/status","updatePaymentStatus":"PUT /api/orders/:id/payment-status"}}}