Fortnite Tracker · Schema
StoreItem
A single rotation item in the Fortnite in-game store.
Games And ComicsPublic APIsFortnitePlayer StatisticsEsportsTracker Network
Properties
| Name | Type | Description |
|---|---|---|
| imageUrl | string | URL to the item's promotional image asset. |
| manifestId | integer | Stable numeric identifier for the item across rotations. |
| name | string | Display name of the cosmetic. |
| rarity | string | Item rarity tier. Common values include `Sturdy`, `Fine`, `Quality`, `Handmade`, `Epic`, `Legendary`. |
| storeCategory | string | Storefront the item appears in. |
| vBucks | integer | Cost of the item in vBucks (Fortnite's in-game currency). |
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-store-item-schema.json",
"title": "StoreItem",
"description": "A single rotation item in the Fortnite in-game store.",
"type": "object",
"properties": {
"imageUrl": {
"type": "string",
"format": "uri",
"description": "URL to the item's promotional image asset.",
"example": "https://trackercdn.com/cdn/fortnitetracker.com/items/abc123.png"
},
"manifestId": {
"type": "integer",
"description": "Stable numeric identifier for the item across rotations.",
"example": 500123
},
"name": {
"type": "string",
"description": "Display name of the cosmetic.",
"example": "Renegade Raider"
},
"rarity": {
"type": "string",
"description": "Item rarity tier. Common values include `Sturdy`, `Fine`, `Quality`, `Handmade`, `Epic`, `Legendary`.",
"enum": [
"Sturdy",
"Fine",
"Quality",
"Handmade",
"Epic",
"Legendary"
],
"example": "Legendary"
},
"storeCategory": {
"type": "string",
"description": "Storefront the item appears in.",
"enum": [
"BRDailyStorefront",
"BRWeeklyStorefront"
],
"example": "BRWeeklyStorefront"
},
"vBucks": {
"type": "integer",
"description": "Cost of the item in vBucks (Fortnite's in-game currency).",
"example": 1500
}
},
"required": [
"manifestId",
"name",
"vBucks",
"storeCategory"
]
}