{
    "success": true,
    "name": "Quotes API",
    "version": "2.0.0",
    "documentation": "See API_DOCUMENTATION.md",
    "endpoints": {
        "GET /": "This index",
        "GET /health": "Health check",
        "GET /stats": "Dataset statistics",
        "GET /quotes": "All quotes (filters: category, author, search, limit, page)",
        "GET /quotes/random": "One random quote (optional ?category=)",
        "GET /quotes/today": "Quote of the day",
        "GET /quotes/search?q=": "Search inside quote text and author",
        "GET /quotes/{id}": "Single quote by id",
        "GET /categories": "All categories with counts",
        "GET /categories/{name}/quotes": "Quotes of one category",
        "GET /authors": "All authors with counts",
        "GET /authors/{name}/quotes": "Quotes of one author"
    },
    "examples": [
        "/quotes?category=motivation",
        "/quotes?author=Albert Einstein",
        "/quotes?search=success",
        "/quotes?limit=5",
        "/quotes?category=programming&limit=5",
        "/quotes?page=1&limit=10"
    ]
}