Prefer to chat? Query the API with natural language using our AI Skill →

Give your AI tool live Cito endpoint context before you write integration code.

Open AI Skill

Public docs assistant

Tell Cito API what you are building.

Get endpoint recommendations, exact requests, code snippets, and a free-key CTA without digging through every page.

Game APIs/Fortnite API

Fortnite API

Competitive events, live leaderboards, player earnings, shop, cosmetics, and news

Includes live duo/team leaderboard rows, org rosters, former rosters, earnings history, tournament history, and Creative map metrics.

Endpoints

GET/api/v1/fortnite

Discover supported Fortnite endpoints and current limitations

GET/api/v1/fortnite/matches/live

Returns active competitive events with optional live leaderboard rows and duo/team member names

GET/api/v1/fortnite/tournaments

List historical, upcoming, and completed Fortnite tournaments

GET/api/v1/fortnite/tournaments/live

Get live competitive tournament windows and leaderboards

GET/api/v1/fortnite/tournaments/live/{eventId}/{windowId}

Get one live tournament window leaderboard with team member rows

GET/api/v1/fortnite/tournaments/{id}/matches

List match/session rows for a tournament where available

GET/api/v1/fortnite/tournaments/{id}/results

Get tournament result rows when available

GET/api/v1/fortnite/tournaments/player/{identifier}/history

Get a player's tournament history

GET/api/v1/fortnite/tournaments/org/{slug}/history

Get tournament history for an esports organization

GET/api/v1/fortnite/orgs

List Fortnite esports organizations

GET/api/v1/fortnite/orgs/{slug}/roster

Get current pro/content creator roster with optional former members

GET/api/v1/fortnite/orgs/{slug}/former

Get former roster members for an organization

GET/api/v1/fortnite/orgs/{slug}/earnings

Get organization earnings summary

GET/api/v1/fortnite/orgs/{slug}/earnings/history

Get organization earnings history over time

GET/api/v1/fortnite/players/top-earners

Get highest-earning competitive Fortnite players

GET/api/v1/fortnite/players/{identifier}

Get a player profile, earnings, and tournament history

GET/api/v1/fortnite/creative/maps/trending

Get trending Creative maps with metrics, thumbnails, official Fortnite links, and creator metadata

GET/api/v1/fortnite/creative/maps/{code}/history

Get historical Creative map metrics by island code

GET/api/v1/fortnite/shop

Get current item shop data

GET/api/v1/fortnite/cosmetics

Search cosmetics by type, rarity, or name

GET/api/v1/fortnite/news

Get Battle Royale, Save the World, or Creative news

Live Competitive Events

GET/api/v1/fortnite/matches/live

Returns currently active Fortnite competitive events. Match routes are aliases for tournament/event data, and leaderboard rows include full team members when Epic publishes team account IDs.

Parameters

NameTypeRequiredDescription
includeLeaderboardbooleanNoSet false to return live events without leaderboard rows
limitintegerNoResults per request where supported
offsetintegerNoPagination offset where supported
regionstringNoFilter historical tournaments by region where supported
yearintegerNoFilter historical tournaments by year where supported

Example Request

curl -X GET "https://api.citoapi.com/api/v1/fortnite/matches/live?includeLeaderboard=true" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

{
  "success": true,
  "count": 1,
  "data": [
    {
      "eventId": "epicgames_S37_FNCS",
      "eventWindowId": "epicgames_S37_FNCS_Event1",
      "name": "FNCS Major",
      "regions": ["NAE", "EU"],
      "startTime": "2026-04-29T18:00:00.000Z",
      "endTime": "2026-04-29T21:00:00.000Z",
      "isLive": true,
      "leaderboardCount": 100,
      "leaderboard": [
        {
          "rank": 1,
          "displayName": "PlayerOne / PlayerTwo",
          "accountId": "primary-account-id",
          "teamAccountIds": ["account-id-1", "account-id-2"],
          "teamMembers": [
            { "accountId": "account-id-1", "displayName": "PlayerOne" },
            { "accountId": "account-id-2", "displayName": "PlayerTwo" }
          ],
          "score": 532,
          "kills": 141,
          "matchesPlayed": 10
        }
      ]
    }
  ]
}

Organization Rosters And History

GET/api/v1/fortnite/orgs/{slug}/roster?includeFormer=true

Use org endpoints for roster pages, org earnings pages, player history, and team profile tools. The roster response separates current pro players, content creators, and former members when known.

curl "https://api.citoapi.com/api/v1/fortnite/orgs/xset/roster?includeFormer=true" \
  -H "x-api-key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "slug": "xset",
    "name": "XSET",
    "currentRoster": {
      "total": 8,
      "proPlayers": [
        { "name": "Clix", "role": "Player", "isActive": true },
        { "name": "MrSavage", "role": "Player", "isActive": true }
      ],
      "contentCreators": [
        { "name": "Moxie", "role": "Content Creator", "isActive": true }
      ]
    },
    "formerRoster": {
      "total": 19,
      "members": [
        { "name": "Av", "role": "Former Player", "isActive": false }
      ]
    },
    "dataQuality": {
      "normalized": true,
      "warnings": []
    }
  }
}

Player And Earnings Data

GET/api/v1/fortnite/players/{identifier}

Get competitive player profiles, tournament history, and earnings data from the Fortnite database.

Example Response

{
  "success": true,
  "data": {
    "id": "player-id",
    "name": "Bugha",
    "country": "United States",
    "currentTeam": "Dignitas",
    "totalEarnings": 3402100,
    "tournaments": [
      {
        "name": "FNCS Major",
        "placement": 1,
        "earnings": 50000,
        "date": "2026-04-20T00:00:00.000Z"
      }
    ]
  }
}

Creative Map Metrics And Thumbnails

GET/api/v1/fortnite/creative/maps/trending

Build discovery pages, map trackers, creator dashboards, and historical trend charts with Creative map records, metric history, proxied thumbnail URLs, official Fortnite island URLs, and estimated creator earnings.

curl "https://api.citoapi.com/api/v1/fortnite/creative/maps/trending?limit=10" \
  -H "x-api-key: YOUR_API_KEY"
{
  "success": true,
  "data": [
    {
      "code": "8179-7540-8163",
      "title": "2v3 CLUTCH REALISTICS 🎯 [SPEED]",
      "creatorName": "wzf",
      "thumbnailUrl": "https://api.citoapi.com/api/v1/public/images/fortnite/...",
      "imageUrl": "https://api.citoapi.com/api/v1/public/images/fortnite/...",
      "fortniteUrl": "https://www.fortnite.com/@wzf/8179-7540-8163",
      "latestMetrics": {
        "plays": 366,
        "peakCcu": 56,
        "minutesPlayed": 6001,
        "averageMinutes": 18.52,
        "estimates": {
          "creatorEarningsUsdLow": 0.5,
          "creatorEarningsUsdHigh": 3
        }
      }
    }
  ]
}

Next

Call of Duty API

Continue