Game APIs/Fortnite API

Fortnite API

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

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

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/{id}/results

Get tournament result rows when available

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/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.

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": "player_name",
          "accountId": "account-id",
          "score": 532,
          "kills": 141,
          "matchesPlayed": 10
        }
      ]
    }
  ]
}

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"
      }
    ]
  }
}

Next

Valorant API

Continue