Fortnite Tracker · Schema
MatchSummary
Summary of a recent match.
Games And ComicsPublic APIsFortnitePlayer StatisticsEsportsTracker Network
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Match identifier. |
| accountId | string | Account UUID this match belongs to. |
| playlist | string | Playlist mode key (e.g., `p2`, `p10`, `p9`). |
| kills | integer | Kills in this match. |
| minutesPlayed | integer | Minutes played in this match. |
| top1 | integer | Number of |
| top5 | integer | Number of top-5 placements in this match group. |
| top6 | integer | Number of top-6 placements in this match group. |
| top10 | integer | Number of top-10 placements in this match group. |
| top12 | integer | Number of top-12 placements in this match group. |
| top25 | integer | Number of top-25 placements in this match group. |
| matches | integer | Matches in this aggregation group. |
| score | integer | Score points earned. |
| dateCollected | string | Timestamp the match summary was recorded. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/fortnite/refs/heads/main/json-schema/fortnite-tracker-match-summary-schema.json",
"title": "MatchSummary",
"description": "Summary of a recent match.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Match identifier.",
"example": 500123
},
"accountId": {
"type": "string",
"format": "uuid",
"description": "Account UUID this match belongs to.",
"example": "4735ce91-3292-4caf-8a5b-17789b40f79c"
},
"playlist": {
"type": "string",
"description": "Playlist mode key (e.g., `p2`, `p10`, `p9`).",
"example": "p9"
},
"kills": {
"type": "integer",
"description": "Kills in this match.",
"example": 8
},
"minutesPlayed": {
"type": "integer",
"description": "Minutes played in this match.",
"example": 22
},
"top1": {
"type": "integer",
"description": "Number of",
"example": 1
},
"top5": {
"type": "integer",
"description": "Number of top-5 placements in this match group.",
"example": 1
},
"top6": {
"type": "integer",
"description": "Number of top-6 placements in this match group.",
"example": 1
},
"top10": {
"type": "integer",
"description": "Number of top-10 placements in this match group.",
"example": 1
},
"top12": {
"type": "integer",
"description": "Number of top-12 placements in this match group.",
"example": 1
},
"top25": {
"type": "integer",
"description": "Number of top-25 placements in this match group.",
"example": 1
},
"matches": {
"type": "integer",
"description": "Matches in this aggregation group.",
"example": 1
},
"score": {
"type": "integer",
"description": "Score points earned.",
"example": 1820
},
"dateCollected": {
"type": "string",
"format": "date-time",
"description": "Timestamp the match summary was recorded.",
"example": "2026-05-29T18:42:11Z"
}
}
}