{
  "status": "online",
  "message": "Vyla-Games API is running",
  "endpoints": {
    "health": {
      "method": "GET",
      "path": "/api/health",
      "desc": "Health check"
    },
    "genres": {
      "method": "GET",
      "path": "/api/genres",
      "desc": "All genres"
    },
    "games": {
      "method": "GET",
      "path": "/api/games?genre={id}&page={n}",
      "desc": "Game list"
    },
    "search": {
      "method": "GET",
      "path": "/api/search?q={query}&page={n}",
      "desc": "Search games"
    },
    "game": {
      "method": "GET",
      "path": "/api/game/{id}",
      "desc": "Game details"
    },
    "download": {
      "method": "GET",
      "path": "/api/download/{id}",
      "desc": "Download URL"
    }
  }
}