Patch 6.2.0 is live — Clean up of duplicated endpoints & improvement of Typescript SDK.
api-fortnite

Fortnite Item Shop Tracker API

The Fortnite item shop resets every day at midnight UTC. Our API gives you instant access to the current rotation, upcoming items, V-Bucks prices, high-quality images, and full shop history — so you can build the tracker your community has been waiting for.

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