Patch 9.0.0 is live — New SDK typescript
api-fortnite.

Use case · Competitive

Fortnite Power
Rankings API.

Epic's official competitive skill rating, as a REST API. Paginated top-10,000 leaderboard, display-name search and per-player entries — the data almost no other Fortnite API serves.

What Power Rankings Data You Get

Leaderboard

The top-10,000 ranked by PR points, paginated

Name Search

Partial, case-insensitive — results include rank, PR and peak PR

Archive Lookup

A player's most recent archived PR entry by account ID

Player Entry

Full tracked stats with the player's Epic OAuth token

Rank & Points

PR points, rank, delta and counting events per entry

Fresh Data

Updated as Epic publishes new standings

Quick Start

# Power Rankings leaderboard (paginated)
curl -H "x-api-key: YOUR_API_KEY" \
  "https://prod.api-fortnite.com/api/v1/events/powerrankings?page=0"

# Search players by display name (partial, case-insensitive)
curl -H "x-api-key: YOUR_API_KEY" \
  "https://prod.api-fortnite.com/api/v1/events/powerrankings/search?q=peterbot"

# A player's latest archived PR entry — by account ID
curl -H "x-api-key: YOUR_API_KEY" \
  "https://prod.api-fortnite.com/api/v1/events/powerrankings/archive/{accountId}"

What You Can Build

  • PR leaderboard sites — searchable, filterable competitive rankings with regional views and movement over time
  • Esports coverage — enrich tournament results and player profiles with official PR context
  • Discord bots— a /pr command that answers with a player's points and rank in any server
  • Scouting tools — track rising players by PR trajectory for orgs and team managers

Pricing

Power Rankings endpoints are part of the Pro plan (8.49 €/month) alongside bulk stats, full event leaderboards and every other endpoint. Start with a free API key to explore the rest of the API first — no credit card required.

View all plans →

Further Reading