{
    "success": true,
    "message": "Sports Betting API - Welcome",
    "data": {
        "api": "Sports Betting API",
        "version": "1.0",
        "timestamp": "2026-07-11 11:26:06",
        "endpoints": {
            "sports": {
                "GET \/sports": "Get all sports",
                "GET \/sports\/{id}": "Get sport by ID",
                "GET \/sports\/{id}\/stats": "Get sport statistics"
            },
            "teams": {
                "GET \/teams": "Get all teams",
                "GET \/teams\/{id}": "Get team by ID",
                "GET \/teams\/{id}\/stats": "Get team statistics",
                "GET \/teams\/{id}\/matches\/upcoming": "Get team upcoming matches",
                "GET \/teams\/{id}\/matches\/recent": "Get team recent matches",
                "GET \/teams\/search?q={keyword}": "Search teams"
            },
            "matches": {
                "GET \/matches": "Get matches (filter by sport_id, league_id, status, date)",
                "GET \/matches\/{id}": "Get match by ID",
                "GET \/matches\/live": "Get live matches",
                "GET \/matches\/upcoming": "Get upcoming matches",
                "GET \/matches\/featured": "Get featured matches",
                "GET \/matches\/date\/{date}": "Get matches by date (Y-m-d)",
                "GET \/matches\/{id}\/odds": "Get odds for match",
                "GET \/matches\/{id}\/stats": "Get match statistics",
                "GET \/matches\/h2h?team1={id}&team2={id}": "Get head to head"
            },
            "odds": {
                "GET \/odds\/types": "Get all odds types",
                "GET \/odds\/{id}": "Get odds by ID",
                "GET \/odds\/{id}\/history": "Get odds history",
                "GET \/odds\/bookmakers": "Get all bookmakers"
            },
            "bets": {
                "POST \/bets\/single": "Place single bet",
                "POST \/bets\/accumulator": "Place accumulator bet",
                "GET \/bets\/user\/{userId}": "Get user bets",
                "GET \/bets\/user\/{userId}\/slips": "Get user bet slips",
                "GET \/bets\/user\/{userId}\/stats": "Get user betting stats",
                "GET \/bets\/user\/{userId}\/transactions": "Get user transactions"
            }
        }
    },
    "timestamp": "2026-07-11 11:26:06"
}