GZW ItemsGZW Items

Get all Items

Access the full GZW Items database with a simple REST API.

The GZW Items API gives you access to the complete item database displayed on gzwitems.com. All data is available through a single endpoint, no authentication required.

Endpoint

GET https://gzwitems.com/api/items

Returns a JSON response containing all items with their details.

Response Format

{
  "items": [
    {
      "id": "allanach-single-malt-scotch-40y",
      "name": "Allanach Single Malt Scotch - 40y",
      "type": "loot",
      "category": "Vices",
      "subcategory": "",
      "imageUrl": "https://static.wikia.nocookie.net/gray-zone-warfare/images/...",
      "gridSize": "1x2",
      "width": 1,
      "height": 2,
      "weight": 2.1,
      "sellPrice": 5451,
      "sellPricePerSlot": 2726,
      "wikiUrl": "https://gray-zone-warfare.fandom.com/wiki/Allanach_Single_Malt_Scotch_-_40y",
      "lastUpdated": "2026-04-13T11:26:07.333Z",
      "url": "https://gzwitems.com/?item=allanach-single-malt-scotch---40y"
    }
  ],
  "lastUpdated": "2026-04-13T11:26:07.497Z",
  "totalItems": 366
}

Item Fields

FieldTypeDescription
idstringUnique item identifier in slug format.
namestringDisplay name of the item.
typestringItem type (e.g. loot).
categorystringItem category (e.g. Vices, Medical, Provisions).
subcategorystringItem subcategory, if applicable.
imageUrlstringURL to the item's icon image.
gridSizestringInventory grid size (e.g. 1x2).
widthnumberInventory width in slots.
heightnumberInventory height in slots.
weightnumberItem weight in kg.
sellPricenumberBest sell price across all traders.
sellPricePerSlotnumberSell price divided by the number of inventory slots it takes up.
wikiUrlstringLink to the item's wiki page.
lastUpdatedstringISO 8601 timestamp of the last price update for this item.
urlstringDirect link to the item on gzwitems.com.

Root Fields

FieldTypeDescription
itemsarrayArray of all item objects.
lastUpdatedstringISO 8601 timestamp of the most recent update across all items.
totalItemsnumberTotal number of items in the database.

On this page