Fortnite API for Developers
Live competitive Fortnite data for tournament tracking, FNCS-style leaderboards, player earnings, item shop, cosmetics, and news. Demo key: pk_demo_cito_live_a06c129e0a9ce1c39c3035bd187541c4 (50 calls/day).
Try It Now (No Account)
curl -H "x-api-key: pk_demo_cito_live_a06c129e0a9ce1c39c3035bd187541c4" \
https://api.citoapi.com/api/v1/fortnite/matches/live?includeLeaderboard=truePricing Comparison
| Feature | Cito API | PandaScore | Official Epic API |
|---|---|---|---|
| Price | $50/mo | $2,000+/mo | N/A (not public) |
| FNCS Data | ✓ Yes | ✓ Yes | Limited |
| Setup Time | 60 seconds | 2 weeks | Requires partnership |
| Rate Limits | Clear monthly limits | Restricted | Very restricted |
Discord Bot Example
Most developers use this API for Discord bots. Copy-paste working code:
// Track a live Fortnite competitive leaderboard automatically
const getLiveFortnite = async () => {
const res = await fetch(
'https://api.citoapi.com/api/v1/fortnite/tournaments/live?includeLeaderboard=true',
{ headers: { 'x-api-key': 'pk_demo_cito_live_a06c129e0a9ce1c39c3035bd187541c4' } }
);
return res.json();
};
// Send to Discord channel
const data = await getLiveFortnite();
const tournament = data.data?.[0];
await channel.send({
embeds: [{
title: tournament?.name ?? 'No live Fortnite event',
description: tournament
? `Top player: ${tournament.leaderboard?.[0]?.displayName ?? 'TBD'}`
: 'Check back when a competitive event is live.',
fields: [
{ name: 'Live events', value: String(data.count) },
{ name: 'Rows returned', value: String(tournament?.leaderboardCount ?? 0) }
]
}]
});Why Developers Choose Cito vs PandaScore
💰 Price
Plans from $25/month instead of enterprise pricing and sales calls
⚡ No sales process
Get API key instantly vs 2-week enterprise negotiation
💬 Discord community
Get help in minutes, not support tickets
Available Endpoints
GET /api/v1/fortnite/matches/liveGet live competitive events with leaderboard rows
GET /api/v1/fortnite/tournaments/liveGet active tournaments and live leaderboards
GET /api/v1/fortnite/players/top-earnersGet highest-earning competitive Fortnite players
GET /api/v1/fortnite/shopGet the current item shop with proxied images
Last verified: April 2026. Live leaderboard data returns display names, points, kills, match counts, and active event windows when Epic competitive events are live.
Ready to build with Fortnite data?
Start with 500 free API calls/month. No credit card required.