FNBR-Scraper API Documentation

Use this API to fetch Fortnite storefront data for a specific date.

Endpoint

GET /api/storefront/:date_here

Parameters

NameTypeDescriptionExample
date_here string Date to fetch data for june-7-2018

Response

Returns a JSON object with metadata and an array of items.

FieldTypeDescription
metadataobjectGeneral info
metadata.request_time_msnumberRequest duration
metadata.server_timestringServer timestamp
metadata.storefront_datestringHuman-readable date
metadata.storefront_itemsnumberTotal item count
dataarrayStorefront items
data[].indexnumberItem order
data[].pricenumberPrice in V-Bucks
data[].namestringItem name
data[].idstringUnique ID
data[].backend_valuestringType (e.g., AthenaCharacter)
data[].raritystringRarity tier
data[].special_tagstringOptional tag
data[].displayAssetPathstringAsset path

Example Request

GET /api/storefront/june-7-2018

Example Response

{
  "metadata": {
    "request_time_ms": 201,
    "server_time": "2025-06-07T12:45:10.960Z",
    "storefront_date": "june-7-2018",
    "storefront_items": 8
  },
  "data": [
    {
      "index": 1,
      "price": 2000,
      "name": "Rex",
      "id": "CID_093_Athena_Commando_M_Dinosaur",
      "backend_value": "AthenaCharacter",
      "rarity": "EFortRarity::Legendary",
      "special_tag": "",
      "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_CID_093_Athena_Commando_M_Dinosaur.DA_Featured_CID_093_Athena_Commando_M_Dinosaur"
    }
  ]
}

Error Codes

StatusDescription
400Invalid date format
404No data found for that date
500Internal server error