Fortnite API
Live matches, player stats, tournaments, and leaderboards
Endpoints
GET
/v1/fortnite/matches/liveReturns currently active competitive matches
GET
/v1/fortnite/matches/{id}Get details for a specific match
GET
/v1/fortnite/players/{username}Get player statistics and history
GET
/v1/fortnite/tournamentsList all tournaments
GET
/v1/fortnite/tournaments/{id}Get tournament details
GET
/v1/fortnite/tournaments/{id}/standingsGet tournament standings
GET
/v1/fortnite/leaderboards/{region}Get regional leaderboards
Live Matches
GET
/v1/fortnite/matches/liveReturns currently active competitive matches.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | No | NA-EAST, NA-WEST, EU, OCE, ASIA, etc. |
tournament | string | No | Filter by tournament ID |
status | string | No | live, upcoming, completed |
limit | integer | No | Results per page (default: 20, max: 100) |
page | integer | No | Page number for pagination |
Example Request
curl -X GET "https://api.citoapi.com/v1/fortnite/matches/live?region=NA-EAST&limit=10" \
-H "Authorization: Bearer sk_live_your_key" \
-H "Content-Type: application/json"Example Response
{
"data": [
{
"id": "match_12345",
"tournament": "FNCS Grand Finals",
"status": "live",
"region": "NA-EAST",
"game_mode": "battle_royale",
"players": [
{
"username": "Bugha",
"placement": 1,
"eliminations": 8,
"points": 25,
"is_alive": true
},
{
"username": "Clix",
"placement": 3,
"eliminations": 5,
"points": 18,
"is_alive": true
}
],
"started_at": "2026-01-15T18:00:00Z",
"current_game": 4,
"total_games": 6
}
],
"pagination": {
"page": 1,
"total_pages": 5,
"total_results": 48
}
}Player Statistics
GET
/v1/fortnite/players/{username}Get detailed player statistics and match history.
Example Response
{
"data": {
"username": "Bugha",
"platform": "PC",
"region": "NA-EAST",
"stats": {
"career": {
"wins": 1247,
"matches": 8934,
"eliminations": 28456,
"kd_ratio": 4.21,
"win_rate": 13.96
},
"competitive": {
"earnings": 3402100,
"placements": {
"first": 23,
"top_5": 89,
"top_10": 156
},
"pr_points": 45200
}
},
"recent_matches": [
{
"match_id": "match_12345",
"tournament": "FNCS Weekly",
"placement": 1,
"eliminations": 8,
"points": 25,
"played_at": "2026-01-15T18:00:00Z"
}
]
}
}Next