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.
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.
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
/api/v1/fortniteDiscover supported Fortnite endpoints and current limitations
/api/v1/fortnite/matches/liveReturns active competitive events with optional live leaderboard rows and duo/team member names
/api/v1/fortnite/tournamentsList historical, upcoming, and completed Fortnite tournaments
/api/v1/fortnite/tournaments/liveGet live competitive tournament windows and leaderboards
/api/v1/fortnite/tournaments/live/{eventId}/{windowId}Get one live tournament window leaderboard with team member rows
/api/v1/fortnite/tournaments/{id}/matchesList match/session rows for a tournament where available
/api/v1/fortnite/tournaments/{id}/resultsGet tournament result rows when available
/api/v1/fortnite/tournaments/player/{identifier}/historyGet a player's tournament history
/api/v1/fortnite/tournaments/org/{slug}/historyGet tournament history for an esports organization
/api/v1/fortnite/orgsList Fortnite esports organizations
/api/v1/fortnite/orgs/{slug}/rosterGet current pro/content creator roster with optional former members
/api/v1/fortnite/orgs/{slug}/formerGet former roster members for an organization
/api/v1/fortnite/orgs/{slug}/earningsGet organization earnings summary
/api/v1/fortnite/orgs/{slug}/earnings/historyGet organization earnings history over time
/api/v1/fortnite/players/top-earnersGet highest-earning competitive Fortnite players
/api/v1/fortnite/players/{identifier}Get a player profile, earnings, and tournament history
/api/v1/fortnite/creative/maps/trendingGet trending Creative maps with metrics, thumbnails, official Fortnite links, and creator metadata
/api/v1/fortnite/creative/maps/{code}/historyGet historical Creative map metrics by island code
/api/v1/fortnite/shopGet current item shop data
/api/v1/fortnite/cosmeticsSearch cosmetics by type, rarity, or name
/api/v1/fortnite/newsGet Battle Royale, Save the World, or Creative news
Live Competitive Events
/api/v1/fortnite/matches/liveReturns 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
| Name | Type | Required | Description |
|---|---|---|---|
includeLeaderboard | boolean | No | Set false to return live events without leaderboard rows |
limit | integer | No | Results per request where supported |
offset | integer | No | Pagination offset where supported |
region | string | No | Filter historical tournaments by region where supported |
year | integer | No | Filter 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
/api/v1/fortnite/orgs/{slug}/roster?includeFormer=trueUse 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
/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
/api/v1/fortnite/creative/maps/trendingBuild 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