Patch 8.0.0 is live
api-fortnite.

Use case · Item shop

Fortnite Item Shop
Tracker API.

The shop resets at midnight UTC. Get today's rotation, upcoming items, V-Bucks prices, hi-res images, and full historical archive — minutes after the reset.

Shop Endpoints

GET /api/v1/shop

Today's full item shop. Updated when the shop resets at 00:00 UTC. Supports filters: type, rarity, section, search, lang.

GET /api/v1/shop/battlepass

Current Battle Pass content and rewards. Supports the lang parameter for localized item names.

Data Per Item

Name & Description

Display name and in-game flavor text

V-Bucks Price

Current price, bundles, and discounts

Item Type

Outfit, emote, pickaxe, glider, wrap…

Rarity

Common through Legendary + special series

Images

Icon, featured, and background resolutions

Set

Thematic set the item belongs to

Shop History

Every date the item appeared in the shop

First Added

Date item was first added to game files

Quick Start

curl -H "x-api-key: YOUR_API_KEY" \
  https://prod.api-fortnite.com/api/v1/shop

# Filter by rarity or type
curl -H "x-api-key: YOUR_API_KEY" \
  "https://prod.api-fortnite.com/api/v1/shop?rarity=legendary&type=outfit"

The shop only changes once per day — cache the response for up to 23 hours to avoid unnecessary API calls.

What You Can Build

  • Shop tracker website — daily item grid with images, prices, and rarity badges
  • Rare item alerts — notify users when a skin they want returns after a long absence
  • Discord daily post — auto-post today's shop to your server every morning
  • Price history charts — track whether prices have changed over time
  • "When will it return?" tool — estimate next appearance using shop history averages

Further Reading