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=true

Pricing Comparison

FeatureCito APIPandaScoreOfficial Epic API
Price$50/mo$2,000+/moN/A (not public)
FNCS Data✓ Yes✓ YesLimited
Setup Time60 seconds2 weeksRequires partnership
Rate LimitsClear monthly limitsRestrictedVery 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/live

Get live competitive events with leaderboard rows

GET /api/v1/fortnite/tournaments/live

Get active tournaments and live leaderboards

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

Get highest-earning competitive Fortnite players

GET /api/v1/fortnite/shop

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