{
    "success": true,
    "name": "Mobiles Products API",
    "version": "1.0.0",
    "documentation": "See API_DOCUMENTATION.md",
    "endpoints": {
        "GET /": "This index",
        "GET /health": "Health + database check",
        "GET /stats": "Catalog statistics",
        "GET /brands": "All brands with product counts",
        "GET /brands/{id|slug}": "Single brand",
        "GET /brands/{id|slug}/products": "Products of a brand (paginated)",
        "GET /categories": "All categories",
        "GET /categories/{id|slug}": "Single category",
        "GET /categories/{id|slug}/products": "Products of a category (paginated)",
        "GET /products": "Products list with filters, sorting, pagination",
        "GET /products/featured": "Featured products",
        "GET /products/latest": "Newest products",
        "GET /products/slug/{slug}": "Single product by slug",
        "GET /products/{id}": "Single product with images, specs, categories",
        "GET /products/{id}/images": "Product images",
        "GET /products/{id}/specs": "Product specifications",
        "GET /products/{id}/related": "Related products",
        "GET /search?q=": "Full text search",
        "GET /compare?ids=1,2": "Compare 2-4 products"
    }
}