Fortnite Tracker · JSON Structure

Fortnite Tracker Leaderboard Entry Structure

A single leaderboard ranking row.

Type: object Properties: 6
Games And ComicsPublic APIsFortnitePlayer StatisticsEsportsTracker Network

LeaderboardEntry is a JSON Structure definition published by Fortnite Tracker, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountId platformId platformName epicUserHandle rank value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fortnite/refs/heads/main/json-structure/fortnite-tracker-leaderboard-entry-structure.json",
  "name": "LeaderboardEntry",
  "description": "A single leaderboard ranking row.",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "uuid",
      "description": "Epic Games account UUID for the leaderboard entry.",
      "example": "4735ce91-3292-4caf-8a5b-17789b40f79c"
    },
    "platformId": {
      "type": "int32",
      "description": "Numeric platform identifier.",
      "example": 5
    },
    "platformName": {
      "type": "string",
      "description": "Platform short code.",
      "example": "pc"
    },
    "epicUserHandle": {
      "type": "string",
      "description": "Player display name.",
      "example": "Bugha"
    },
    "rank": {
      "type": "int32",
      "description": "Rank position on the leaderboard.",
      "example": 12
    },
    "value": {
      "type": "string",
      "description": "Display value of the stat being ranked.",
      "example": "247"
    }
  }
}