{
  "name": "CitoAPI",
  "baseUrl": "https://api.citoapi.com/api/v1",
  "auth": {
    "headers": [
      "X-API-Key: YOUR_API_KEY",
      "Authorization: Bearer YOUR_API_KEY"
    ],
    "keepKeysServerSide": true
  },
  "docs": "https://citoapi.com/docs/",
  "pricing": "https://citoapi.com/pricing/",
  "signup": "https://citoapi.com/signup/",
  "source": "src/lib/endpoints.ts",
  "categories": [
    {
      "name": "League of Legends",
      "icon": "⚔️",
      "endpoints": [
        {
          "method": "GET",
          "path": "/lol/leagues",
          "fullPath": "/api/v1/lol/leagues",
          "url": "https://api.citoapi.com/api/v1/lol/leagues",
          "name": "All Leagues",
          "description": "Get all LoL esports leagues (LCS, LEC, LCK, etc.)",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leagues/{leagueId}",
          "fullPath": "/api/v1/lol/leagues/{leagueId}",
          "url": "https://api.citoapi.com/api/v1/lol/leagues/{leagueId}",
          "name": "Get League",
          "description": "Get a specific league",
          "params": [
            {
              "name": "leagueId",
              "placeholder": "lcs",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/leagues/{leagueId}/standings",
          "fullPath": "/api/v1/lol/leagues/{leagueId}/standings",
          "url": "https://api.citoapi.com/api/v1/lol/leagues/{leagueId}/standings",
          "name": "League Standings",
          "description": "Get standings for a league",
          "params": [
            {
              "name": "leagueId",
              "placeholder": "lcs",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/leagues/{leagueId}/schedule",
          "fullPath": "/api/v1/lol/leagues/{leagueId}/schedule",
          "url": "https://api.citoapi.com/api/v1/lol/leagues/{leagueId}/schedule",
          "name": "League Schedule",
          "description": "Get schedule for a league",
          "params": [
            {
              "name": "leagueId",
              "placeholder": "lcs",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/leagues/{leagueId}/history",
          "fullPath": "/api/v1/lol/leagues/{leagueId}/history",
          "url": "https://api.citoapi.com/api/v1/lol/leagues/{leagueId}/history",
          "name": "League History",
          "description": "Get historical data for a league",
          "params": [
            {
              "name": "leagueId",
              "placeholder": "lcs",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/leagues/{leagueId}/teams",
          "fullPath": "/api/v1/lol/leagues/{leagueId}/teams",
          "url": "https://api.citoapi.com/api/v1/lol/leagues/{leagueId}/teams",
          "name": "League Teams",
          "description": "Get teams in a league",
          "params": [
            {
              "name": "leagueId",
              "placeholder": "lcs",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments",
          "fullPath": "/api/v1/lol/tournaments",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments",
          "name": "Tournaments",
          "description": "Get all tournaments",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/live",
          "fullPath": "/api/v1/lol/tournaments/live",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/live",
          "name": "Live Tournament Matches",
          "description": "Alias for currently live LoL esports matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}",
          "name": "Get Tournament",
          "description": "Get a specific tournament",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/standings",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/standings",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/standings",
          "name": "Tournament Standings",
          "description": "Get tournament standings",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/bracket",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/bracket",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/bracket",
          "name": "Tournament Bracket",
          "description": "Get tournament bracket",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/matches",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/matches",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/matches",
          "name": "Tournament Matches",
          "description": "Get tournament matches",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/results",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/results",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/results",
          "name": "Tournament Results",
          "description": "Get tournament results",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/stats",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/stats",
          "name": "Tournament Stats",
          "description": "Get tournament statistics",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/tournaments/{tournamentId}/mvp",
          "fullPath": "/api/v1/lol/tournaments/{tournamentId}/mvp",
          "url": "https://api.citoapi.com/api/v1/lol/tournaments/{tournamentId}/mvp",
          "name": "Tournament MVP",
          "description": "Get tournament MVP",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "worlds-2025",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams",
          "fullPath": "/api/v1/lol/teams",
          "url": "https://api.citoapi.com/api/v1/lol/teams",
          "name": "All Teams",
          "description": "Get all LoL esports teams",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}",
          "fullPath": "/api/v1/lol/teams/{slug}",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}",
          "name": "Get Team",
          "description": "Get a specific team",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/roster",
          "fullPath": "/api/v1/lol/teams/{slug}/roster",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/roster",
          "name": "Team Roster",
          "description": "Get current roster",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/roster/history",
          "fullPath": "/api/v1/lol/teams/{slug}/roster/history",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/roster/history",
          "name": "Roster History",
          "description": "Get historical rosters",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/matches",
          "fullPath": "/api/v1/lol/teams/{slug}/matches",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/matches",
          "name": "Team Matches",
          "description": "Get team match history",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/stats",
          "fullPath": "/api/v1/lol/teams/{slug}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/stats",
          "name": "Team Stats",
          "description": "Get team statistics",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/h2h/{opponentSlug}",
          "fullPath": "/api/v1/lol/teams/{slug}/h2h/{opponentSlug}",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/h2h/{opponentSlug}",
          "name": "Head to Head",
          "description": "Get head-to-head record against another team",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            },
            {
              "name": "opponentSlug",
              "placeholder": "t1",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/earnings",
          "fullPath": "/api/v1/lol/teams/{slug}/earnings",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/earnings",
          "name": "Team Earnings",
          "description": "Get team earnings",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/achievements",
          "fullPath": "/api/v1/lol/teams/{slug}/achievements",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/achievements",
          "name": "Team Achievements",
          "description": "Get team achievements and titles",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/champions",
          "fullPath": "/api/v1/lol/teams/{slug}/champions",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/champions",
          "name": "Team Champion Pool",
          "description": "Get team champion pool and pick rates",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/teams/{slug}/ranking-history",
          "fullPath": "/api/v1/lol/teams/{slug}/ranking-history",
          "url": "https://api.citoapi.com/api/v1/lol/teams/{slug}/ranking-history",
          "name": "Team Ranking History",
          "description": "Get historical ranking over time",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/rankings/teams",
          "fullPath": "/api/v1/lol/rankings/teams",
          "url": "https://api.citoapi.com/api/v1/lol/rankings/teams",
          "name": "World Team Rankings",
          "description": "Get world team rankings sorted by rank",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/players",
          "fullPath": "/api/v1/lol/players",
          "url": "https://api.citoapi.com/api/v1/lol/players",
          "name": "All Players",
          "description": "Get all LoL esports players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/players/search",
          "fullPath": "/api/v1/lol/players/search",
          "url": "https://api.citoapi.com/api/v1/lol/players/search",
          "name": "Search Players",
          "description": "Autocomplete player search",
          "params": [
            {
              "name": "q",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}",
          "fullPath": "/api/v1/lol/players/{playerId}",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}",
          "name": "Get Player",
          "description": "Get a specific player",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/stats",
          "fullPath": "/api/v1/lol/players/{playerId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/stats",
          "name": "Player Stats",
          "description": "Get player statistics",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/stats/career",
          "fullPath": "/api/v1/lol/players/{playerId}/stats/career",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/stats/career",
          "name": "Career Stats",
          "description": "Get player career statistics",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/earnings",
          "fullPath": "/api/v1/lol/players/{playerId}/earnings",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/earnings",
          "name": "Player Earnings",
          "description": "Get player earnings",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/earnings/summary",
          "fullPath": "/api/v1/lol/players/{playerId}/earnings/summary",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/earnings/summary",
          "name": "Earnings Summary",
          "description": "Get player earnings summary",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/teams",
          "fullPath": "/api/v1/lol/players/{playerId}/teams",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/teams",
          "name": "Player Team History",
          "description": "Get player team history",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/matches",
          "fullPath": "/api/v1/lol/players/{playerId}/matches",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/matches",
          "name": "Player Matches",
          "description": "Get player match history",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/champions",
          "fullPath": "/api/v1/lol/players/{playerId}/champions",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/champions",
          "name": "Player Champions",
          "description": "Get player champion pool",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/achievements",
          "fullPath": "/api/v1/lol/players/{playerId}/achievements",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/achievements",
          "name": "Player Achievements",
          "description": "Get player achievements and titles",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/compare/{otherPlayerId}",
          "fullPath": "/api/v1/lol/players/{playerId}/compare/{otherPlayerId}",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/compare/{otherPlayerId}",
          "name": "Compare Players",
          "description": "Compare two players head-to-head",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            },
            {
              "name": "otherPlayerId",
              "placeholder": "chovy",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/players/{playerId}/peers",
          "fullPath": "/api/v1/lol/players/{playerId}/peers",
          "url": "https://api.citoapi.com/api/v1/lol/players/{playerId}/peers",
          "name": "Similar Players",
          "description": "Get similar players",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/earnings",
          "fullPath": "/api/v1/lol/leaderboards/earnings",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/earnings",
          "name": "Top Earners",
          "description": "Highest earning players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/kda",
          "fullPath": "/api/v1/lol/leaderboards/kda",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/kda",
          "name": "KDA Leaderboard",
          "description": "Top players by KDA",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/cs",
          "fullPath": "/api/v1/lol/leaderboards/cs",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/cs",
          "name": "CS Leaderboard",
          "description": "Top players by CS per minute",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/winrate",
          "fullPath": "/api/v1/lol/leaderboards/winrate",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/winrate",
          "name": "Win Rate Leaderboard",
          "description": "Top players by win rate",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/vision",
          "fullPath": "/api/v1/lol/leaderboards/vision",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/vision",
          "name": "Vision Leaderboard",
          "description": "Top players by vision score",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/firstblood",
          "fullPath": "/api/v1/lol/leaderboards/firstblood",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/firstblood",
          "name": "First Blood Leaderboard",
          "description": "Top players by first blood rate",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/damage",
          "fullPath": "/api/v1/lol/leaderboards/damage",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/damage",
          "name": "Damage Leaderboard",
          "description": "Top players by damage per minute",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/leaderboards/championships",
          "fullPath": "/api/v1/lol/leaderboards/championships",
          "url": "https://api.citoapi.com/api/v1/lol/leaderboards/championships",
          "name": "Championships Leaderboard",
          "description": "Most championship titles",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/matches",
          "fullPath": "/api/v1/lol/matches",
          "url": "https://api.citoapi.com/api/v1/lol/matches",
          "name": "All Matches",
          "description": "List recent/upcoming/all LoL esports matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/matches/past",
          "fullPath": "/api/v1/lol/matches/past",
          "url": "https://api.citoapi.com/api/v1/lol/matches/past",
          "name": "Past Matches",
          "description": "List completed LoL esports matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/matches/{matchId}",
          "fullPath": "/api/v1/lol/matches/{matchId}",
          "url": "https://api.citoapi.com/api/v1/lol/matches/{matchId}",
          "name": "Get Match",
          "description": "Get a specific match",
          "params": [
            {
              "name": "matchId",
              "placeholder": "lol-match-116249880466944999",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/matches/{matchId}/games",
          "fullPath": "/api/v1/lol/matches/{matchId}/games",
          "url": "https://api.citoapi.com/api/v1/lol/matches/{matchId}/games",
          "name": "Match Games",
          "description": "Get games in a match",
          "params": [
            {
              "name": "matchId",
              "placeholder": "lol-match-116249880466944999",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/matches/{matchId}/stats",
          "fullPath": "/api/v1/lol/matches/{matchId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/matches/{matchId}/stats",
          "name": "Match Stats",
          "description": "Get aggregate match statistics",
          "params": [
            {
              "name": "matchId",
              "placeholder": "lol-match-116249880466944999",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/matches/{matchId}/player-stats",
          "fullPath": "/api/v1/lol/matches/{matchId}/player-stats",
          "url": "https://api.citoapi.com/api/v1/lol/matches/{matchId}/player-stats",
          "name": "Match Player Stats",
          "description": "Get player stats grouped by game for a match",
          "params": [
            {
              "name": "matchId",
              "placeholder": "lol-match-116249880466944999",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/matches/{matchId}/timeline",
          "fullPath": "/api/v1/lol/matches/{matchId}/timeline",
          "url": "https://api.citoapi.com/api/v1/lol/matches/{matchId}/timeline",
          "name": "Match Timeline",
          "description": "Get match event timeline",
          "params": [
            {
              "name": "matchId",
              "placeholder": "lol-match-116249880466944999",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}",
          "fullPath": "/api/v1/lol/games/{gameId}",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}",
          "name": "Get Game",
          "description": "Get a specific game",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/stats",
          "fullPath": "/api/v1/lol/games/{gameId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/stats",
          "name": "Game Player Stats",
          "description": "Get per-player stats for a game. Returns a clean empty response if rows are not available yet.",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/player-stats",
          "fullPath": "/api/v1/lol/games/{gameId}/player-stats",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/player-stats",
          "name": "Game Player Stats Alias",
          "description": "Alias for game player stats",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/timeline",
          "fullPath": "/api/v1/lol/games/{gameId}/timeline",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/timeline",
          "name": "Game Timeline",
          "description": "Get game event timeline",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/builds",
          "fullPath": "/api/v1/lol/games/{gameId}/builds",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/builds",
          "name": "Game Builds",
          "description": "Get player builds from a game",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/gold",
          "fullPath": "/api/v1/lol/games/{gameId}/gold",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/gold",
          "name": "Game Gold",
          "description": "Get gold advantage data",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/games/{gameId}/objectives",
          "fullPath": "/api/v1/lol/games/{gameId}/objectives",
          "url": "https://api.citoapi.com/api/v1/lol/games/{gameId}/objectives",
          "name": "Game Objectives",
          "description": "Get objective control data",
          "params": [
            {
              "name": "gameId",
              "placeholder": "lol-game-110198981285393612",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live",
          "fullPath": "/api/v1/lol/live",
          "url": "https://api.citoapi.com/api/v1/lol/live",
          "name": "Live Matches",
          "description": "Get currently live matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/live/{matchId}",
          "fullPath": "/api/v1/lol/live/{matchId}",
          "url": "https://api.citoapi.com/api/v1/lol/live/{matchId}",
          "name": "Live Match",
          "description": "Get a specific live match",
          "params": [
            {
              "name": "matchId",
              "placeholder": "12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live/{gameId}/stats",
          "fullPath": "/api/v1/lol/live/{gameId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/live/{gameId}/stats",
          "name": "Live Game Stats",
          "description": "Get live game statistics",
          "params": [
            {
              "name": "gameId",
              "placeholder": "67890",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live/{gameId}/window",
          "fullPath": "/api/v1/lol/live/{gameId}/window",
          "url": "https://api.citoapi.com/api/v1/lol/live/{gameId}/window",
          "name": "Live Game Window",
          "description": "Get live game data window",
          "params": [
            {
              "name": "gameId",
              "placeholder": "67890",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live/{gameId}/details",
          "fullPath": "/api/v1/lol/live/{gameId}/details",
          "url": "https://api.citoapi.com/api/v1/lol/live/{gameId}/details",
          "name": "Live Game Details",
          "description": "Get live game details",
          "params": [
            {
              "name": "gameId",
              "placeholder": "67890",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live/{gameId}/events",
          "fullPath": "/api/v1/lol/live/{gameId}/events",
          "url": "https://api.citoapi.com/api/v1/lol/live/{gameId}/events",
          "name": "Live Game Events",
          "description": "Get live game events feed",
          "params": [
            {
              "name": "gameId",
              "placeholder": "67890",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/live/{gameId}/gold",
          "fullPath": "/api/v1/lol/live/{gameId}/gold",
          "url": "https://api.citoapi.com/api/v1/lol/live/{gameId}/gold",
          "name": "Live Gold Graph",
          "description": "Get real-time gold difference data for a live game",
          "params": [
            {
              "name": "gameId",
              "placeholder": "67890",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/schedule",
          "fullPath": "/api/v1/lol/schedule",
          "url": "https://api.citoapi.com/api/v1/lol/schedule",
          "name": "Full Schedule",
          "description": "Get full schedule with filters",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/schedule/today",
          "fullPath": "/api/v1/lol/schedule/today",
          "url": "https://api.citoapi.com/api/v1/lol/schedule/today",
          "name": "Today's Matches",
          "description": "Get today's scheduled matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/schedule/week",
          "fullPath": "/api/v1/lol/schedule/week",
          "url": "https://api.citoapi.com/api/v1/lol/schedule/week",
          "name": "This Week",
          "description": "Get this week's scheduled matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/schedule/upcoming",
          "fullPath": "/api/v1/lol/schedule/upcoming",
          "url": "https://api.citoapi.com/api/v1/lol/schedule/upcoming",
          "name": "Upcoming Matches",
          "description": "Get upcoming scheduled matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/schedule/past",
          "fullPath": "/api/v1/lol/schedule/past",
          "url": "https://api.citoapi.com/api/v1/lol/schedule/past",
          "name": "Past Schedule",
          "description": "Alias for completed LoL matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/schedule/results",
          "fullPath": "/api/v1/lol/schedule/results",
          "url": "https://api.citoapi.com/api/v1/lol/schedule/results",
          "name": "Recent Results",
          "description": "Get recent completed matches across all leagues",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/transfers",
          "fullPath": "/api/v1/lol/transfers",
          "url": "https://api.citoapi.com/api/v1/lol/transfers",
          "name": "Recent Transfers",
          "description": "Recent player transfers",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/transfers/{transferId}",
          "fullPath": "/api/v1/lol/transfers/{transferId}",
          "url": "https://api.citoapi.com/api/v1/lol/transfers/{transferId}",
          "name": "Get Transfer",
          "description": "Get a specific transfer",
          "params": [
            {
              "name": "transferId",
              "placeholder": "t-12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/transfers/player/{playerId}",
          "fullPath": "/api/v1/lol/transfers/player/{playerId}",
          "url": "https://api.citoapi.com/api/v1/lol/transfers/player/{playerId}",
          "name": "Player Transfers",
          "description": "Get transfers for a player",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/transfers/team/{slug}",
          "fullPath": "/api/v1/lol/transfers/team/{slug}",
          "url": "https://api.citoapi.com/api/v1/lol/transfers/team/{slug}",
          "name": "Team Transfers",
          "description": "Get transfers for a team",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/transfers/window/{season}",
          "fullPath": "/api/v1/lol/transfers/window/{season}",
          "url": "https://api.citoapi.com/api/v1/lol/transfers/window/{season}",
          "name": "Transfer Window",
          "description": "Get transfers for a season",
          "params": [
            {
              "name": "season",
              "placeholder": "2025-spring",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/champions/stats",
          "fullPath": "/api/v1/lol/champions/stats",
          "url": "https://api.citoapi.com/api/v1/lol/champions/stats",
          "name": "Champion Stats",
          "description": "Get aggregate champion statistics",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/champions/meta",
          "fullPath": "/api/v1/lol/champions/meta",
          "url": "https://api.citoapi.com/api/v1/lol/champions/meta",
          "name": "Meta Tier List",
          "description": "Get current meta champion tier list",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/champions/patches/{patch}",
          "fullPath": "/api/v1/lol/champions/patches/{patch}",
          "url": "https://api.citoapi.com/api/v1/lol/champions/patches/{patch}",
          "name": "Patch Impact",
          "description": "Get champion changes for a patch",
          "params": [
            {
              "name": "patch",
              "placeholder": "14.10",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/champions/{championId}/stats",
          "fullPath": "/api/v1/lol/champions/{championId}/stats",
          "url": "https://api.citoapi.com/api/v1/lol/champions/{championId}/stats",
          "name": "Champion Detail Stats",
          "description": "Get stats for a specific champion",
          "params": [
            {
              "name": "championId",
              "placeholder": "azir",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/champions/{championId}/players",
          "fullPath": "/api/v1/lol/champions/{championId}/players",
          "url": "https://api.citoapi.com/api/v1/lol/champions/{championId}/players",
          "name": "Champion Players",
          "description": "Get top players on a champion",
          "params": [
            {
              "name": "championId",
              "placeholder": "azir",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/champions/{championId}/matchups",
          "fullPath": "/api/v1/lol/champions/{championId}/matchups",
          "url": "https://api.citoapi.com/api/v1/lol/champions/{championId}/matchups",
          "name": "Champion Matchups",
          "description": "Get champion matchup data",
          "params": [
            {
              "name": "championId",
              "placeholder": "azir",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/players/{playerId}/trend",
          "fullPath": "/api/v1/lol/analytics/players/{playerId}/trend",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/players/{playerId}/trend",
          "name": "Player Trend",
          "description": "Get player performance trend",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/teams/{slug}/trend",
          "fullPath": "/api/v1/lol/analytics/teams/{slug}/trend",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/teams/{slug}/trend",
          "name": "Team Trend",
          "description": "Get team performance trend",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/roles/{role}",
          "fullPath": "/api/v1/lol/analytics/roles/{role}",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/roles/{role}",
          "name": "Role Analytics",
          "description": "Get analytics for a role",
          "params": [
            {
              "name": "role",
              "placeholder": "mid",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/regions/compare",
          "fullPath": "/api/v1/lol/analytics/regions/compare",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/regions/compare",
          "name": "Region Comparison",
          "description": "Compare regions by performance",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/analytics/drafts/{matchId}",
          "fullPath": "/api/v1/lol/analytics/drafts/{matchId}",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/drafts/{matchId}",
          "name": "Draft Analysis",
          "description": "Get draft analysis for a match",
          "params": [
            {
              "name": "matchId",
              "placeholder": "12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/teams/{slug}/win-conditions",
          "fullPath": "/api/v1/lol/analytics/teams/{slug}/win-conditions",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/teams/{slug}/win-conditions",
          "name": "Win Conditions",
          "description": "Get team win condition analysis",
          "params": [
            {
              "name": "slug",
              "placeholder": "cloud9",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/players/{playerId}/impact",
          "fullPath": "/api/v1/lol/analytics/players/{playerId}/impact",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/players/{playerId}/impact",
          "name": "Player Impact",
          "description": "Get player impact metrics",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/analytics/players/{playerId}/clutch",
          "fullPath": "/api/v1/lol/analytics/players/{playerId}/clutch",
          "url": "https://api.citoapi.com/api/v1/lol/analytics/players/{playerId}/clutch",
          "name": "Clutch Stats",
          "description": "Get player clutch performance stats",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/fantasy/projections/players",
          "fullPath": "/api/v1/lol/fantasy/projections/players",
          "url": "https://api.citoapi.com/api/v1/lol/fantasy/projections/players",
          "name": "Fantasy Projections",
          "description": "Get fantasy point projections for players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/fantasy/stats/players/{playerId}",
          "fullPath": "/api/v1/lol/fantasy/stats/players/{playerId}",
          "url": "https://api.citoapi.com/api/v1/lol/fantasy/stats/players/{playerId}",
          "name": "Fantasy Player Stats",
          "description": "Get fantasy stats for a player",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/fantasy/optimal",
          "fullPath": "/api/v1/lol/fantasy/optimal",
          "url": "https://api.citoapi.com/api/v1/lol/fantasy/optimal",
          "name": "Optimal Lineup",
          "description": "Get optimal fantasy lineup",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/fantasy/value",
          "fullPath": "/api/v1/lol/fantasy/value",
          "url": "https://api.citoapi.com/api/v1/lol/fantasy/value",
          "name": "Fantasy Value",
          "description": "Get fantasy value rankings",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/records",
          "fullPath": "/api/v1/lol/records",
          "url": "https://api.citoapi.com/api/v1/lol/records",
          "name": "All Records",
          "description": "Get all-time records",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/records/{category}",
          "fullPath": "/api/v1/lol/records/{category}",
          "url": "https://api.citoapi.com/api/v1/lol/records/{category}",
          "name": "Records by Category",
          "description": "Get records for a category",
          "params": [
            {
              "name": "category",
              "placeholder": "kills",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/records/player/{playerId}",
          "fullPath": "/api/v1/lol/records/player/{playerId}",
          "url": "https://api.citoapi.com/api/v1/lol/records/player/{playerId}",
          "name": "Player Records",
          "description": "Get records held by a player",
          "params": [
            {
              "name": "playerId",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/records/team/{slug}",
          "fullPath": "/api/v1/lol/records/team/{slug}",
          "url": "https://api.citoapi.com/api/v1/lol/records/team/{slug}",
          "name": "Team Records",
          "description": "Get records held by a team",
          "params": [
            {
              "name": "slug",
              "placeholder": "t1",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/history/{year}",
          "fullPath": "/api/v1/lol/history/{year}",
          "url": "https://api.citoapi.com/api/v1/lol/history/{year}",
          "name": "Year History",
          "description": "Get historical data for a year",
          "params": [
            {
              "name": "year",
              "placeholder": "2024",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/history/worlds",
          "fullPath": "/api/v1/lol/history/worlds",
          "url": "https://api.citoapi.com/api/v1/lol/history/worlds",
          "name": "Worlds History",
          "description": "Get Worlds championship history",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/history/msi",
          "fullPath": "/api/v1/lol/history/msi",
          "url": "https://api.citoapi.com/api/v1/lol/history/msi",
          "name": "MSI History",
          "description": "Get MSI championship history",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/history/halloffame",
          "fullPath": "/api/v1/lol/history/halloffame",
          "url": "https://api.citoapi.com/api/v1/lol/history/halloffame",
          "name": "Hall of Fame",
          "description": "Get LoL esports Hall of Fame",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/search",
          "fullPath": "/api/v1/lol/search",
          "url": "https://api.citoapi.com/api/v1/lol/search",
          "name": "Search",
          "description": "Search players, teams, tournaments",
          "params": [
            {
              "name": "q",
              "placeholder": "faker",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/autocomplete",
          "fullPath": "/api/v1/lol/autocomplete",
          "url": "https://api.citoapi.com/api/v1/lol/autocomplete",
          "name": "Autocomplete",
          "description": "Get search autocomplete suggestions",
          "params": [
            {
              "name": "q",
              "placeholder": "fak",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/trending",
          "fullPath": "/api/v1/lol/trending",
          "url": "https://api.citoapi.com/api/v1/lol/trending",
          "name": "Trending",
          "description": "Get trending players, teams, and topics",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/champions",
          "fullPath": "/api/v1/lol/static/champions",
          "url": "https://api.citoapi.com/api/v1/lol/static/champions",
          "name": "All Champions",
          "description": "Get all champion data",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/champions/{championId}",
          "fullPath": "/api/v1/lol/static/champions/{championId}",
          "url": "https://api.citoapi.com/api/v1/lol/static/champions/{championId}",
          "name": "Get Champion",
          "description": "Get a specific champion",
          "params": [
            {
              "name": "championId",
              "placeholder": "azir",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/lol/static/items",
          "fullPath": "/api/v1/lol/static/items",
          "url": "https://api.citoapi.com/api/v1/lol/static/items",
          "name": "All Items",
          "description": "Get all item data",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/patches",
          "fullPath": "/api/v1/lol/static/patches",
          "url": "https://api.citoapi.com/api/v1/lol/static/patches",
          "name": "All Patches",
          "description": "Get all patch versions",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/patches/current",
          "fullPath": "/api/v1/lol/static/patches/current",
          "url": "https://api.citoapi.com/api/v1/lol/static/patches/current",
          "name": "Current Patch",
          "description": "Get current patch version",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/regions",
          "fullPath": "/api/v1/lol/static/regions",
          "url": "https://api.citoapi.com/api/v1/lol/static/regions",
          "name": "All Regions",
          "description": "Get all competitive regions",
          "params": []
        },
        {
          "method": "GET",
          "path": "/lol/static/roles",
          "fullPath": "/api/v1/lol/static/roles",
          "url": "https://api.citoapi.com/api/v1/lol/static/roles",
          "name": "All Roles",
          "description": "Get all player roles",
          "params": []
        }
      ]
    },
    {
      "name": "Call of Duty",
      "icon": "🎮",
      "endpoints": [
        {
          "method": "GET",
          "path": "/cod/orgs",
          "fullPath": "/api/v1/cod/orgs",
          "url": "https://api.citoapi.com/api/v1/cod/orgs",
          "name": "List Organizations",
          "description": "Get all CoD esports organizations",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/orgs/{slug}",
          "fullPath": "/api/v1/cod/orgs/{slug}",
          "url": "https://api.citoapi.com/api/v1/cod/orgs/{slug}",
          "name": "Get Organization",
          "description": "Get a specific organization by slug",
          "params": [
            {
              "name": "slug",
              "placeholder": "optic-texas",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/orgs/{slug}/roster",
          "fullPath": "/api/v1/cod/orgs/{slug}/roster",
          "url": "https://api.citoapi.com/api/v1/cod/orgs/{slug}/roster",
          "name": "Organization Roster",
          "description": "Get current roster for an org",
          "params": [
            {
              "name": "slug",
              "placeholder": "optic-texas",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/players",
          "fullPath": "/api/v1/cod/players",
          "url": "https://api.citoapi.com/api/v1/cod/players",
          "name": "List Players",
          "description": "Get all CoD esports players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/players/{id}",
          "fullPath": "/api/v1/cod/players/{id}",
          "url": "https://api.citoapi.com/api/v1/cod/players/{id}",
          "name": "Get Player",
          "description": "Get a specific player by ID",
          "params": [
            {
              "name": "id",
              "placeholder": "scump",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/players/{id}/earnings",
          "fullPath": "/api/v1/cod/players/{id}/earnings",
          "url": "https://api.citoapi.com/api/v1/cod/players/{id}/earnings",
          "name": "Player Earnings",
          "description": "Get player earnings history",
          "params": [
            {
              "name": "id",
              "placeholder": "scump",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/tournaments",
          "fullPath": "/api/v1/cod/tournaments",
          "url": "https://api.citoapi.com/api/v1/cod/tournaments",
          "name": "List Tournaments",
          "description": "Get all CoD tournaments",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/cdl/standings",
          "fullPath": "/api/v1/cod/cdl/standings",
          "url": "https://api.citoapi.com/api/v1/cod/cdl/standings",
          "name": "CDL Standings",
          "description": "Get current Black Ops 7 CDL league standings",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/cdl/schedule",
          "fullPath": "/api/v1/cod/cdl/schedule",
          "url": "https://api.citoapi.com/api/v1/cod/cdl/schedule",
          "name": "CDL Schedule",
          "description": "Get upcoming Black Ops 7 CDL matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/matches",
          "fullPath": "/api/v1/cod/matches",
          "url": "https://api.citoapi.com/api/v1/cod/matches",
          "name": "Match History",
          "description": "Get paginated historical CoD matches by season, date range, team, or tournament",
          "params": [
            {
              "name": "season",
              "placeholder": "2025"
            },
            {
              "name": "page",
              "placeholder": "2"
            },
            {
              "name": "limit",
              "placeholder": "25"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/matches/recent",
          "fullPath": "/api/v1/cod/matches/recent",
          "url": "https://api.citoapi.com/api/v1/cod/matches/recent",
          "name": "Recent Matches",
          "description": "Get recently completed CoD matches with pagination and filters",
          "params": [
            {
              "name": "limit",
              "placeholder": "100"
            },
            {
              "name": "offset",
              "placeholder": "0"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/matches/upcoming",
          "fullPath": "/api/v1/cod/matches/upcoming",
          "url": "https://api.citoapi.com/api/v1/cod/matches/upcoming",
          "name": "Upcoming Matches",
          "description": "Get upcoming scheduled CoD matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/matches/{id}/player-stats",
          "fullPath": "/api/v1/cod/matches/{id}/player-stats",
          "url": "https://api.citoapi.com/api/v1/cod/matches/{id}/player-stats",
          "name": "Match Player Stats",
          "description": "Get match-level per-player totals with optional per-map/game breakdowns",
          "params": [
            {
              "name": "id",
              "placeholder": "bp-match-214935",
              "required": true
            },
            {
              "name": "includeMaps",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/cod/transfers",
          "fullPath": "/api/v1/cod/transfers",
          "url": "https://api.citoapi.com/api/v1/cod/transfers",
          "name": "Recent Transfers",
          "description": "Get recent player transfers",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/leaderboards/earnings",
          "fullPath": "/api/v1/cod/leaderboards/earnings",
          "url": "https://api.citoapi.com/api/v1/cod/leaderboards/earnings",
          "name": "Earnings Leaderboard",
          "description": "Top earners in CoD esports",
          "params": []
        },
        {
          "method": "GET",
          "path": "/cod/search",
          "fullPath": "/api/v1/cod/search",
          "url": "https://api.citoapi.com/api/v1/cod/search",
          "name": "Search",
          "description": "Search players, orgs, tournaments",
          "params": [
            {
              "name": "q",
              "placeholder": "optic",
              "required": true
            }
          ]
        }
      ]
    },
    {
      "name": "Apex Legends",
      "icon": "🏆",
      "endpoints": [
        {
          "method": "GET",
          "path": "/apex",
          "fullPath": "/api/v1/apex",
          "url": "https://api.citoapi.com/api/v1/apex",
          "name": "Apex Overview",
          "description": "Discover Apex Legends / ALGS endpoint coverage",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/events",
          "fullPath": "/api/v1/apex/algs/events",
          "url": "https://api.citoapi.com/api/v1/apex/algs/events",
          "name": "ALGS Events",
          "description": "List official ALGS series and events with schedule and status",
          "params": [
            {
              "name": "region",
              "placeholder": "Asia Pacific North"
            },
            {
              "name": "includeMatches",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/events/{seriesId}",
          "fullPath": "/api/v1/apex/algs/events/{seriesId}",
          "url": "https://api.citoapi.com/api/v1/apex/algs/events/{seriesId}",
          "name": "ALGS Event Detail",
          "description": "Get one ALGS series with match schedule and enriched stats data",
          "params": [
            {
              "name": "seriesId",
              "placeholder": "01KH745JDFS5Z87AWMPT2VJA4C",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/events/{seriesId}/scores",
          "fullPath": "/api/v1/apex/algs/events/{seriesId}/scores",
          "url": "https://api.citoapi.com/api/v1/apex/algs/events/{seriesId}/scores",
          "name": "Series Scores & Stats",
          "description": "Get standings, per-game scores, HMS, team/player stats, legend pick rates, and compositions",
          "params": [
            {
              "name": "seriesId",
              "placeholder": "01KH745JDFS5Z87AWMPT2VJA4C",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/events/{seriesId}/bans",
          "fullPath": "/api/v1/apex/algs/events/{seriesId}/bans",
          "url": "https://api.citoapi.com/api/v1/apex/algs/events/{seriesId}/bans",
          "name": "Legend Bans",
          "description": "Get map-by-map banned legends and game winners",
          "params": [
            {
              "name": "seriesId",
              "placeholder": "01KH745JDFS5Z87AWMPT2VJA4C",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/matches",
          "fullPath": "/api/v1/apex/algs/matches",
          "url": "https://api.citoapi.com/api/v1/apex/algs/matches",
          "name": "ALGS Matches",
          "description": "List ALGS matches/maps with status and region filters",
          "params": [
            {
              "name": "region",
              "placeholder": "Asia Pacific North"
            },
            {
              "name": "status",
              "placeholder": "completed"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/regions",
          "fullPath": "/api/v1/apex/algs/regions",
          "url": "https://api.citoapi.com/api/v1/apex/algs/regions",
          "name": "ALGS Regions",
          "description": "List supported ALGS competitive regions",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/maps",
          "fullPath": "/api/v1/apex/algs/maps",
          "url": "https://api.citoapi.com/api/v1/apex/algs/maps",
          "name": "Apex Maps",
          "description": "List Apex Legends maps used in ALGS data",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/global-stats",
          "fullPath": "/api/v1/apex/algs/global-stats",
          "url": "https://api.citoapi.com/api/v1/apex/algs/global-stats",
          "name": "Global Event Stats",
          "description": "Get event-level ALGS stats by region including standings, teams, players, legends, and compositions",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/global-stats/{eventId}",
          "fullPath": "/api/v1/apex/algs/global-stats/{eventId}",
          "url": "https://api.citoapi.com/api/v1/apex/algs/global-stats/{eventId}",
          "name": "Global Event Detail",
          "description": "Get complete global event stats for one ALGS event",
          "params": [
            {
              "name": "eventId",
              "placeholder": "split-1-pro-league-apac-north",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/global-stats/{eventId}/players",
          "fullPath": "/api/v1/apex/algs/global-stats/{eventId}/players",
          "url": "https://api.citoapi.com/api/v1/apex/algs/global-stats/{eventId}/players",
          "name": "Global Player Leaders",
          "description": "Get event-level player directory and kill/assist leaders",
          "params": [
            {
              "name": "eventId",
              "placeholder": "split-1-pro-league-apac-north",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/global-stats/{eventId}/legends",
          "fullPath": "/api/v1/apex/algs/global-stats/{eventId}/legends",
          "url": "https://api.citoapi.com/api/v1/apex/algs/global-stats/{eventId}/legends",
          "name": "Global Legend Stats",
          "description": "Get event-level legend kills, damage, pick rates, and team compositions",
          "params": [
            {
              "name": "eventId",
              "placeholder": "split-1-pro-league-apac-north",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/players",
          "fullPath": "/api/v1/apex/algs/players",
          "url": "https://api.citoapi.com/api/v1/apex/algs/players",
          "name": "ALGS Players",
          "description": "List ALGS players with team, region, role, profile images, and stats",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/players/search",
          "fullPath": "/api/v1/apex/algs/players/search",
          "url": "https://api.citoapi.com/api/v1/apex/algs/players/search",
          "name": "Search ALGS Players",
          "description": "Search ALGS players with headshots, team, role, logos, and stats",
          "params": [
            {
              "name": "q",
              "placeholder": "IGARASI",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/transactions",
          "fullPath": "/api/v1/apex/algs/transactions",
          "url": "https://api.citoapi.com/api/v1/apex/algs/transactions",
          "name": "ALGS Transactions",
          "description": "Get roster moves, role changes, and team name changes",
          "params": [
            {
              "name": "region",
              "placeholder": "asia-pacific-north"
            },
            {
              "name": "type",
              "placeholder": "teamRosterChange"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/tournaments",
          "fullPath": "/api/v1/apex/algs/tournaments",
          "url": "https://api.citoapi.com/api/v1/apex/algs/tournaments",
          "name": "ALGS Tournaments",
          "description": "List cached ALGS tournament records",
          "params": []
        },
        {
          "method": "GET",
          "path": "/apex/algs/tournaments/{tournamentId}",
          "fullPath": "/api/v1/apex/algs/tournaments/{tournamentId}",
          "url": "https://api.citoapi.com/api/v1/apex/algs/tournaments/{tournamentId}",
          "name": "Tournament Detail",
          "description": "Get one cached ALGS tournament",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/tournaments/{tournamentId}/games",
          "fullPath": "/api/v1/apex/algs/tournaments/{tournamentId}/games",
          "url": "https://api.citoapi.com/api/v1/apex/algs/tournaments/{tournamentId}/games",
          "name": "Tournament Games",
          "description": "Get map/game rows for a cached ALGS tournament",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/tournaments/{tournamentId}/team-stats",
          "fullPath": "/api/v1/apex/algs/tournaments/{tournamentId}/team-stats",
          "url": "https://api.citoapi.com/api/v1/apex/algs/tournaments/{tournamentId}/team-stats",
          "name": "Tournament Team Stats",
          "description": "Get cached tournament-level team stat rows",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "12345",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/apex/algs/tournaments/{tournamentId}/player-stats",
          "fullPath": "/api/v1/apex/algs/tournaments/{tournamentId}/player-stats",
          "url": "https://api.citoapi.com/api/v1/apex/algs/tournaments/{tournamentId}/player-stats",
          "name": "Tournament Player Stats",
          "description": "Get cached tournament-level player stat rows",
          "params": [
            {
              "name": "tournamentId",
              "placeholder": "12345",
              "required": true
            }
          ]
        }
      ]
    },
    {
      "name": "Dota 2",
      "icon": "🛡️",
      "endpoints": [
        {
          "method": "GET",
          "path": "/dota2",
          "fullPath": "/api/v1/dota2",
          "url": "https://api.citoapi.com/api/v1/dota2",
          "name": "Dota 2 Overview",
          "description": "Discover Dota 2 endpoint coverage and sync metadata",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/search",
          "fullPath": "/api/v1/dota2/search",
          "url": "https://api.citoapi.com/api/v1/dota2/search",
          "name": "Search Dota",
          "description": "Search Dota 2 players, teams, tournaments, and matches",
          "params": [
            {
              "name": "q",
              "placeholder": "4nalog",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/matches/live",
          "fullPath": "/api/v1/dota2/matches/live",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/live",
          "name": "Live Matches",
          "description": "Get active Dota 2 matches and live status",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/matches/upcoming",
          "fullPath": "/api/v1/dota2/matches/upcoming",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/upcoming",
          "name": "Upcoming Matches",
          "description": "Get upcoming Dota 2 schedule rows",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/matches/recent",
          "fullPath": "/api/v1/dota2/matches/recent",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/recent",
          "name": "Recent Matches",
          "description": "Get recently completed Dota 2 matches",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/matches/{matchId}",
          "fullPath": "/api/v1/dota2/matches/{matchId}",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/{matchId}",
          "name": "Match Detail",
          "description": "Get series-level match details, teams, score, tournament, and source context",
          "params": [
            {
              "name": "matchId",
              "placeholder": "650870",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/matches/{matchId}/games",
          "fullPath": "/api/v1/dota2/matches/{matchId}/games",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/{matchId}/games",
          "name": "Match Games",
          "description": "Get game-by-game rows with duration, side data, and OpenDota enrichment",
          "params": [
            {
              "name": "matchId",
              "placeholder": "650870",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/matches/{matchId}/draft",
          "fullPath": "/api/v1/dota2/matches/{matchId}/draft",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/{matchId}/draft",
          "name": "Draft Pick/Bans",
          "description": "Get pick and ban rows where draft data is available",
          "params": [
            {
              "name": "matchId",
              "placeholder": "650870",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/matches/{matchId}/player-stats",
          "fullPath": "/api/v1/dota2/matches/{matchId}/player-stats",
          "url": "https://api.citoapi.com/api/v1/dota2/matches/{matchId}/player-stats",
          "name": "Match Player Stats",
          "description": "Get player stat rows by match with KDA, GPM, XPM, damage, tower damage, LH@10, and heroes",
          "params": [
            {
              "name": "matchId",
              "placeholder": "650870",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/games/{gameId}/player-stats",
          "fullPath": "/api/v1/dota2/games/{gameId}/player-stats",
          "url": "https://api.citoapi.com/api/v1/dota2/games/{gameId}/player-stats",
          "name": "Game Player Stats",
          "description": "Get player stat rows for one Dota 2 game",
          "params": [
            {
              "name": "gameId",
              "placeholder": "opendota-8799499238",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/teams",
          "fullPath": "/api/v1/dota2/teams",
          "url": "https://api.citoapi.com/api/v1/dota2/teams",
          "name": "Teams",
          "description": "List Dota 2 teams with profile metadata",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/teams/{teamIdOrSlug}/roster",
          "fullPath": "/api/v1/dota2/teams/{teamIdOrSlug}/roster",
          "url": "https://api.citoapi.com/api/v1/dota2/teams/{teamIdOrSlug}/roster",
          "name": "Team Roster",
          "description": "Get current roster for a Dota 2 team",
          "params": [
            {
              "name": "teamIdOrSlug",
              "placeholder": "nemesis",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/teams/{teamIdOrSlug}/matches",
          "fullPath": "/api/v1/dota2/teams/{teamIdOrSlug}/matches",
          "url": "https://api.citoapi.com/api/v1/dota2/teams/{teamIdOrSlug}/matches",
          "name": "Team Matches",
          "description": "Get match history for a Dota 2 team",
          "params": [
            {
              "name": "teamIdOrSlug",
              "placeholder": "nemesis",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/teams/{teamIdOrSlug}/stats",
          "fullPath": "/api/v1/dota2/teams/{teamIdOrSlug}/stats",
          "url": "https://api.citoapi.com/api/v1/dota2/teams/{teamIdOrSlug}/stats",
          "name": "Team Stats",
          "description": "Get team aggregate stats from enriched Dota 2 rows",
          "params": [
            {
              "name": "teamIdOrSlug",
              "placeholder": "nemesis",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/teams/{teamIdOrSlug}/radar",
          "fullPath": "/api/v1/dota2/teams/{teamIdOrSlug}/radar",
          "url": "https://api.citoapi.com/api/v1/dota2/teams/{teamIdOrSlug}/radar",
          "name": "Team Radar",
          "description": "Get latest team radar scores for dashboards and comparisons",
          "params": [
            {
              "name": "teamIdOrSlug",
              "placeholder": "nemesis",
              "required": true
            },
            {
              "name": "window",
              "placeholder": "90d"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/players",
          "fullPath": "/api/v1/dota2/players",
          "url": "https://api.citoapi.com/api/v1/dota2/players",
          "name": "Players",
          "description": "List Dota 2 players with profile metadata",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/players/{playerIdOrSlug}",
          "fullPath": "/api/v1/dota2/players/{playerIdOrSlug}",
          "url": "https://api.citoapi.com/api/v1/dota2/players/{playerIdOrSlug}",
          "name": "Player Detail",
          "description": "Get one Dota 2 player profile",
          "params": [
            {
              "name": "playerIdOrSlug",
              "placeholder": "295547",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/players/{playerIdOrSlug}/matches",
          "fullPath": "/api/v1/dota2/players/{playerIdOrSlug}/matches",
          "url": "https://api.citoapi.com/api/v1/dota2/players/{playerIdOrSlug}/matches",
          "name": "Player Matches",
          "description": "Get match history for a Dota 2 player",
          "params": [
            {
              "name": "playerIdOrSlug",
              "placeholder": "295547",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/players/{playerIdOrSlug}/heroes",
          "fullPath": "/api/v1/dota2/players/{playerIdOrSlug}/heroes",
          "url": "https://api.citoapi.com/api/v1/dota2/players/{playerIdOrSlug}/heroes",
          "name": "Player Heroes",
          "description": "Get player hero history and win-rate rows",
          "params": [
            {
              "name": "playerIdOrSlug",
              "placeholder": "295547",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/players/{playerIdOrSlug}/stats",
          "fullPath": "/api/v1/dota2/players/{playerIdOrSlug}/stats",
          "url": "https://api.citoapi.com/api/v1/dota2/players/{playerIdOrSlug}/stats",
          "name": "Player Stats",
          "description": "Get aggregate player stats and percentiles",
          "params": [
            {
              "name": "playerIdOrSlug",
              "placeholder": "295547",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/players/{playerIdOrSlug}/radar",
          "fullPath": "/api/v1/dota2/players/{playerIdOrSlug}/radar",
          "url": "https://api.citoapi.com/api/v1/dota2/players/{playerIdOrSlug}/radar",
          "name": "Player Radar",
          "description": "Get percentile spider graph scores by role",
          "params": [
            {
              "name": "playerIdOrSlug",
              "placeholder": "295547",
              "required": true
            },
            {
              "name": "role",
              "placeholder": "mid"
            },
            {
              "name": "window",
              "placeholder": "90d"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/tournaments",
          "fullPath": "/api/v1/dota2/tournaments",
          "url": "https://api.citoapi.com/api/v1/dota2/tournaments",
          "name": "Tournaments",
          "description": "List Dota 2 tournaments",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/tournaments/{tournamentIdOrSlug}/matches",
          "fullPath": "/api/v1/dota2/tournaments/{tournamentIdOrSlug}/matches",
          "url": "https://api.citoapi.com/api/v1/dota2/tournaments/{tournamentIdOrSlug}/matches",
          "name": "Tournament Matches",
          "description": "Get matches for a Dota 2 tournament",
          "params": [
            {
              "name": "tournamentIdOrSlug",
              "placeholder": "1win-essence",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/tournaments/{tournamentIdOrSlug}/standings",
          "fullPath": "/api/v1/dota2/tournaments/{tournamentIdOrSlug}/standings",
          "url": "https://api.citoapi.com/api/v1/dota2/tournaments/{tournamentIdOrSlug}/standings",
          "name": "Tournament Standings",
          "description": "Get standings where tournament standings are available",
          "params": [
            {
              "name": "tournamentIdOrSlug",
              "placeholder": "1win-essence",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/rankings",
          "fullPath": "/api/v1/dota2/rankings",
          "url": "https://api.citoapi.com/api/v1/dota2/rankings",
          "name": "Team Rankings",
          "description": "Get cached Dota 2 team rankings",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/leaderboards/{metric}",
          "fullPath": "/api/v1/dota2/leaderboards/{metric}",
          "url": "https://api.citoapi.com/api/v1/dota2/leaderboards/{metric}",
          "name": "Metric Leaderboard",
          "description": "Leaderboards for GPM, XPM, KDA, damage, tower damage, kill participation, and LH@10",
          "params": [
            {
              "name": "metric",
              "placeholder": "gpm",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/dota2/heroes",
          "fullPath": "/api/v1/dota2/heroes",
          "url": "https://api.citoapi.com/api/v1/dota2/heroes",
          "name": "Heroes",
          "description": "List Dota 2 heroes from enriched data",
          "params": []
        },
        {
          "method": "GET",
          "path": "/dota2/heroes/{heroIdOrSlug}/stats",
          "fullPath": "/api/v1/dota2/heroes/{heroIdOrSlug}/stats",
          "url": "https://api.citoapi.com/api/v1/dota2/heroes/{heroIdOrSlug}/stats",
          "name": "Hero Stats",
          "description": "Get hero stats from cached Dota 2 rows",
          "params": [
            {
              "name": "heroIdOrSlug",
              "placeholder": "ember-spirit",
              "required": true
            }
          ]
        }
      ]
    },
    {
      "name": "UFC",
      "icon": "🥊",
      "endpoints": [
        {
          "method": "GET",
          "path": "/ufc",
          "fullPath": "/api/v1/ufc",
          "url": "https://api.citoapi.com/api/v1/ufc",
          "name": "UFC Overview",
          "description": "Discover UFC endpoint coverage, available stats, and sync metadata",
          "params": []
        },
        {
          "method": "GET",
          "path": "/ufc/search",
          "fullPath": "/api/v1/ufc/search",
          "url": "https://api.citoapi.com/api/v1/ufc/search",
          "name": "Search UFC",
          "description": "Search fighters, events, bouts, and divisions",
          "params": [
            {
              "name": "q",
              "placeholder": "islam",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/rankings",
          "fullPath": "/api/v1/ufc/rankings",
          "url": "https://api.citoapi.com/api/v1/ufc/rankings",
          "name": "Rankings",
          "description": "Get current UFC rankings by division",
          "params": []
        },
        {
          "method": "GET",
          "path": "/ufc/rankings/{division}",
          "fullPath": "/api/v1/ufc/rankings/{division}",
          "url": "https://api.citoapi.com/api/v1/ufc/rankings/{division}",
          "name": "Division Rankings",
          "description": "Get rankings for one UFC division",
          "params": [
            {
              "name": "division",
              "placeholder": "lightweight",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/fighters",
          "fullPath": "/api/v1/ufc/fighters",
          "url": "https://api.citoapi.com/api/v1/ufc/fighters",
          "name": "Fighters",
          "description": "List UFC fighters with pagination, profile metadata, and stat availability",
          "params": [
            {
              "name": "page",
              "placeholder": "1"
            },
            {
              "name": "limit",
              "placeholder": "50"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/fighters/{slug}",
          "fullPath": "/api/v1/ufc/fighters/{slug}",
          "url": "https://api.citoapi.com/api/v1/ufc/fighters/{slug}",
          "name": "Fighter Profile",
          "description": "Get one fighter profile with bio, record, rankings, and stat summary",
          "params": [
            {
              "name": "slug",
              "placeholder": "islam-makhachev",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/fighters/{slug}/stats",
          "fullPath": "/api/v1/ufc/fighters/{slug}/stats",
          "url": "https://api.citoapi.com/api/v1/ufc/fighters/{slug}/stats",
          "name": "Fighter Stats",
          "description": "Get striking, grappling, accuracy, defense, win method, target, and position stats",
          "params": [
            {
              "name": "slug",
              "placeholder": "islam-makhachev",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/fighters/{slug}/fights",
          "fullPath": "/api/v1/ufc/fighters/{slug}/fights",
          "url": "https://api.citoapi.com/api/v1/ufc/fighters/{slug}/fights",
          "name": "Fighter Fights",
          "description": "Get fight history for one UFC fighter",
          "params": [
            {
              "name": "slug",
              "placeholder": "islam-makhachev",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events",
          "fullPath": "/api/v1/ufc/events",
          "url": "https://api.citoapi.com/api/v1/ufc/events",
          "name": "Events",
          "description": "List upcoming, recent, and historical UFC events with pagination",
          "params": [
            {
              "name": "page",
              "placeholder": "1"
            },
            {
              "name": "limit",
              "placeholder": "50"
            },
            {
              "name": "hasStats",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events/recent",
          "fullPath": "/api/v1/ufc/events/recent",
          "url": "https://api.citoapi.com/api/v1/ufc/events/recent",
          "name": "Recent Events",
          "description": "Get recently completed UFC events",
          "params": [
            {
              "name": "page",
              "placeholder": "1"
            },
            {
              "name": "limit",
              "placeholder": "25"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events/upcoming",
          "fullPath": "/api/v1/ufc/events/upcoming",
          "url": "https://api.citoapi.com/api/v1/ufc/events/upcoming",
          "name": "Upcoming Events",
          "description": "Get upcoming UFC events and cards",
          "params": [
            {
              "name": "page",
              "placeholder": "1"
            },
            {
              "name": "limit",
              "placeholder": "25"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events/{eventIdOrSlug}",
          "fullPath": "/api/v1/ufc/events/{eventIdOrSlug}",
          "url": "https://api.citoapi.com/api/v1/ufc/events/{eventIdOrSlug}",
          "name": "Event Detail",
          "description": "Get one event by ID or slug with card metadata and bout counts",
          "params": [
            {
              "name": "eventIdOrSlug",
              "placeholder": "ufc-328-chimaev-vs-strickland",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events/{eventIdOrSlug}/bouts",
          "fullPath": "/api/v1/ufc/events/{eventIdOrSlug}/bouts",
          "url": "https://api.citoapi.com/api/v1/ufc/events/{eventIdOrSlug}/bouts",
          "name": "Event Bouts",
          "description": "Get all bouts on a UFC event card",
          "params": [
            {
              "name": "eventIdOrSlug",
              "placeholder": "ufc-328-chimaev-vs-strickland",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/events/{eventIdOrSlug}/stats",
          "fullPath": "/api/v1/ufc/events/{eventIdOrSlug}/stats",
          "url": "https://api.citoapi.com/api/v1/ufc/events/{eventIdOrSlug}/stats",
          "name": "Event Fight Stats",
          "description": "Get bout and round stats for every fight on an event card",
          "params": [
            {
              "name": "eventIdOrSlug",
              "placeholder": "ufc-328-chimaev-vs-strickland",
              "required": true
            },
            {
              "name": "round",
              "placeholder": "1"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/bouts",
          "fullPath": "/api/v1/ufc/bouts",
          "url": "https://api.citoapi.com/api/v1/ufc/bouts",
          "name": "Bouts",
          "description": "List UFC bouts with pagination and optional stat inclusion",
          "params": [
            {
              "name": "page",
              "placeholder": "1"
            },
            {
              "name": "limit",
              "placeholder": "50"
            },
            {
              "name": "hasStats",
              "placeholder": "true"
            },
            {
              "name": "includeStats",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/bouts/{boutId}",
          "fullPath": "/api/v1/ufc/bouts/{boutId}",
          "url": "https://api.citoapi.com/api/v1/ufc/bouts/{boutId}",
          "name": "Bout Detail",
          "description": "Get one UFC bout with fighters, result, round, method, and event context",
          "params": [
            {
              "name": "boutId",
              "placeholder": "770c5302e32916ea",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/bouts/{boutId}/stats",
          "fullPath": "/api/v1/ufc/bouts/{boutId}/stats",
          "url": "https://api.citoapi.com/api/v1/ufc/bouts/{boutId}/stats",
          "name": "Bout Stats",
          "description": "Get fighter totals for one bout with optional round filtering",
          "params": [
            {
              "name": "boutId",
              "placeholder": "770c5302e32916ea",
              "required": true
            },
            {
              "name": "round",
              "placeholder": "1"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/ufc/bouts/{boutId}/rounds",
          "fullPath": "/api/v1/ufc/bouts/{boutId}/rounds",
          "url": "https://api.citoapi.com/api/v1/ufc/bouts/{boutId}/rounds",
          "name": "Round Stats",
          "description": "Get round-by-round fighter stat rows for one bout",
          "params": [
            {
              "name": "boutId",
              "placeholder": "770c5302e32916ea",
              "required": true
            },
            {
              "name": "round",
              "placeholder": "2"
            }
          ]
        }
      ]
    },
    {
      "name": "Fortnite",
      "icon": "🏗️",
      "endpoints": [
        {
          "method": "GET",
          "path": "/fortnite",
          "fullPath": "/api/v1/fortnite",
          "url": "https://api.citoapi.com/api/v1/fortnite",
          "name": "Discovery",
          "description": "Discover supported Fortnite endpoints and current limitations",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/matches/live",
          "fullPath": "/api/v1/fortnite/matches/live",
          "url": "https://api.citoapi.com/api/v1/fortnite/matches/live",
          "name": "Live Events",
          "description": "Get currently live competitive events with duo/team leaderboard rows",
          "params": [
            {
              "name": "includeLeaderboard",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments",
          "fullPath": "/api/v1/fortnite/tournaments",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments",
          "name": "Tournaments",
          "description": "Get historical, upcoming, and completed Fortnite tournaments",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/upcoming",
          "fullPath": "/api/v1/fortnite/tournaments/upcoming",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/upcoming",
          "name": "Upcoming Tournaments",
          "description": "Get upcoming tournaments",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/live",
          "fullPath": "/api/v1/fortnite/tournaments/live",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/live",
          "name": "Live Tournaments",
          "description": "Get live tournaments with leaderboard rows and teamMembers",
          "params": [
            {
              "name": "includeLeaderboard",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/live/{eventId}/{windowId}",
          "fullPath": "/api/v1/fortnite/tournaments/live/{eventId}/{windowId}",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/live/{eventId}/{windowId}",
          "name": "Live Window Leaderboard",
          "description": "Get one live event window leaderboard",
          "params": [
            {
              "name": "eventId",
              "placeholder": "epicgames_S37_FNCS",
              "required": true
            },
            {
              "name": "windowId",
              "placeholder": "S37_FNCS_Event1",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/{id}/matches",
          "fullPath": "/api/v1/fortnite/tournaments/{id}/matches",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/{id}/matches",
          "name": "Tournament Matches",
          "description": "Get match/session rows for a tournament",
          "params": [
            {
              "name": "id",
              "placeholder": "fncs-major",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/{id}/results",
          "fullPath": "/api/v1/fortnite/tournaments/{id}/results",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/{id}/results",
          "name": "Tournament Results",
          "description": "Get tournament result rows",
          "params": [
            {
              "name": "id",
              "placeholder": "fncs-major",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/player/{identifier}/history",
          "fullPath": "/api/v1/fortnite/tournaments/player/{identifier}/history",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/player/{identifier}/history",
          "name": "Player Tournament History",
          "description": "Get tournament history for a player",
          "params": [
            {
              "name": "identifier",
              "placeholder": "bugha",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/tournaments/org/{slug}/history",
          "fullPath": "/api/v1/fortnite/tournaments/org/{slug}/history",
          "url": "https://api.citoapi.com/api/v1/fortnite/tournaments/org/{slug}/history",
          "name": "Org Tournament History",
          "description": "Get tournament history for an organization",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/players",
          "fullPath": "/api/v1/fortnite/players",
          "url": "https://api.citoapi.com/api/v1/fortnite/players",
          "name": "List Players",
          "description": "Get all Fortnite competitive players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/players/top-earners",
          "fullPath": "/api/v1/fortnite/players/top-earners",
          "url": "https://api.citoapi.com/api/v1/fortnite/players/top-earners",
          "name": "Top Earners",
          "description": "Get highest earning players",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/players/lookup/{username}",
          "fullPath": "/api/v1/fortnite/players/lookup/{username}",
          "url": "https://api.citoapi.com/api/v1/fortnite/players/lookup/{username}",
          "name": "Live Player Lookup",
          "description": "Look up an Epic account when available",
          "params": [
            {
              "name": "username",
              "placeholder": "bugha",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/players/{identifier}",
          "fullPath": "/api/v1/fortnite/players/{identifier}",
          "url": "https://api.citoapi.com/api/v1/fortnite/players/{identifier}",
          "name": "Get Player",
          "description": "Get a specific player",
          "params": [
            {
              "name": "identifier",
              "placeholder": "bugha",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/players/{identifier}/earnings",
          "fullPath": "/api/v1/fortnite/players/{identifier}/earnings",
          "url": "https://api.citoapi.com/api/v1/fortnite/players/{identifier}/earnings",
          "name": "Player Earnings",
          "description": "Get player earnings",
          "params": [
            {
              "name": "identifier",
              "placeholder": "bugha",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs",
          "fullPath": "/api/v1/fortnite/orgs",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs",
          "name": "Organizations",
          "description": "List Fortnite esports organizations",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs/{slug}",
          "fullPath": "/api/v1/fortnite/orgs/{slug}",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs/{slug}",
          "name": "Organization Detail",
          "description": "Get an organization profile",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs/{slug}/roster",
          "fullPath": "/api/v1/fortnite/orgs/{slug}/roster",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs/{slug}/roster",
          "name": "Organization Roster",
          "description": "Get current pro/content creator roster with optional former members",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            },
            {
              "name": "includeFormer",
              "placeholder": "true"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs/{slug}/former",
          "fullPath": "/api/v1/fortnite/orgs/{slug}/former",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs/{slug}/former",
          "name": "Former Roster",
          "description": "Get former roster members for an organization",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs/{slug}/earnings",
          "fullPath": "/api/v1/fortnite/orgs/{slug}/earnings",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs/{slug}/earnings",
          "name": "Organization Earnings",
          "description": "Get organization earnings summary",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/orgs/{slug}/earnings/history",
          "fullPath": "/api/v1/fortnite/orgs/{slug}/earnings/history",
          "url": "https://api.citoapi.com/api/v1/fortnite/orgs/{slug}/earnings/history",
          "name": "Org Earnings History",
          "description": "Get organization earnings history",
          "params": [
            {
              "name": "slug",
              "placeholder": "xset",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/creative/maps",
          "fullPath": "/api/v1/fortnite/creative/maps",
          "url": "https://api.citoapi.com/api/v1/fortnite/creative/maps",
          "name": "Creative Maps",
          "description": "Search Fortnite Creative maps with media fields when indexed",
          "params": [
            {
              "name": "search",
              "placeholder": "zone wars"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/creative/maps/trending",
          "fullPath": "/api/v1/fortnite/creative/maps/trending",
          "url": "https://api.citoapi.com/api/v1/fortnite/creative/maps/trending",
          "name": "Trending Creative Maps",
          "description": "Get trending Creative maps with current metrics, thumbnails, creator metadata, and official Fortnite links",
          "params": [
            {
              "name": "limit",
              "placeholder": "10"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/creative/maps/{code}",
          "fullPath": "/api/v1/fortnite/creative/maps/{code}",
          "url": "https://api.citoapi.com/api/v1/fortnite/creative/maps/{code}",
          "name": "Creative Map Detail",
          "description": "Get one Creative map by island code with thumbnailUrl, imageUrl, fortniteUrl, and latest metrics",
          "params": [
            {
              "name": "code",
              "placeholder": "1234-5678-9012",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/creative/maps/{code}/history",
          "fullPath": "/api/v1/fortnite/creative/maps/{code}/history",
          "url": "https://api.citoapi.com/api/v1/fortnite/creative/maps/{code}/history",
          "name": "Creative Map History",
          "description": "Get historical metric snapshots for a Creative map",
          "params": [
            {
              "name": "code",
              "placeholder": "1234-5678-9012",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/shop",
          "fullPath": "/api/v1/fortnite/shop",
          "url": "https://api.citoapi.com/api/v1/fortnite/shop",
          "name": "Item Shop",
          "description": "Get the current Fortnite item shop",
          "params": []
        },
        {
          "method": "GET",
          "path": "/fortnite/cosmetics",
          "fullPath": "/api/v1/fortnite/cosmetics",
          "url": "https://api.citoapi.com/api/v1/fortnite/cosmetics",
          "name": "Cosmetics",
          "description": "Search cosmetics",
          "params": [
            {
              "name": "search",
              "placeholder": "renegade"
            }
          ]
        },
        {
          "method": "GET",
          "path": "/fortnite/news",
          "fullPath": "/api/v1/fortnite/news",
          "url": "https://api.citoapi.com/api/v1/fortnite/news",
          "name": "News",
          "description": "Get Fortnite news",
          "params": [
            {
              "name": "mode",
              "placeholder": "br"
            }
          ]
        }
      ]
    },
    {
      "name": "QR Code",
      "icon": "🔳",
      "endpoints": [
        {
          "method": "GET",
          "path": "/qr/generate",
          "fullPath": "/api/v1/qr/generate",
          "url": "https://api.citoapi.com/api/v1/qr/generate",
          "name": "Generate QR Code",
          "description": "Generate a QR code from a URL or text. Returns PNG binary, SVG string, or base64 JSON.",
          "params": [
            {
              "name": "data",
              "placeholder": "https://citoapi.com",
              "required": true
            },
            {
              "name": "size",
              "placeholder": "400"
            },
            {
              "name": "format",
              "placeholder": "png"
            },
            {
              "name": "fg",
              "placeholder": "%23000000"
            },
            {
              "name": "bg",
              "placeholder": "%23ffffff"
            },
            {
              "name": "margin",
              "placeholder": "4"
            },
            {
              "name": "ec",
              "placeholder": "M"
            }
          ]
        },
        {
          "method": "POST",
          "path": "/qr/generate",
          "fullPath": "/api/v1/qr/generate",
          "url": "https://api.citoapi.com/api/v1/qr/generate",
          "name": "Generate QR Code with Logo",
          "description": "Generate a QR code with an embedded logo. Pass a base64 data URL in the logo.image field.",
          "params": []
        }
      ]
    },
    {
      "name": "TikTok",
      "icon": "🎵",
      "endpoints": [
        {
          "method": "POST",
          "path": "/transcript/tiktok",
          "fullPath": "/api/v1/transcript/tiktok",
          "url": "https://api.citoapi.com/api/v1/transcript/tiktok",
          "name": "TikTok Transcript",
          "description": "Extract a transcript from any public TikTok video. Supports text, verbose (with timestamps), SRT, and VTT formats.",
          "params": []
        }
      ]
    },
    {
      "name": "Search",
      "icon": "🔍",
      "endpoints": [
        {
          "method": "GET",
          "path": "/search",
          "fullPath": "/api/v1/search",
          "url": "https://api.citoapi.com/api/v1/search",
          "name": "Global Search",
          "description": "Search across all games",
          "params": [
            {
              "name": "q",
              "placeholder": "optic",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/search/autocomplete",
          "fullPath": "/api/v1/search/autocomplete",
          "url": "https://api.citoapi.com/api/v1/search/autocomplete",
          "name": "Autocomplete",
          "description": "Get search suggestions",
          "params": [
            {
              "name": "q",
              "placeholder": "bug",
              "required": true
            }
          ]
        },
        {
          "method": "GET",
          "path": "/search/stats",
          "fullPath": "/api/v1/search/stats",
          "url": "https://api.citoapi.com/api/v1/search/stats",
          "name": "Database Stats",
          "description": "Get database statistics",
          "params": []
        },
        {
          "method": "GET",
          "path": "/health",
          "fullPath": "/api/v1/health",
          "url": "https://api.citoapi.com/api/v1/health",
          "name": "Health Check",
          "description": "Check API status",
          "params": []
        }
      ]
    }
  ]
}
