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/itemsReturns 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
| Field | Type | Description |
|---|---|---|
id | string | Unique item identifier in slug format. |
name | string | Display name of the item. |
type | string | Item type (e.g. loot). |
category | string | Item category (e.g. Vices, Medical, Provisions). |
subcategory | string | Item subcategory, if applicable. |
imageUrl | string | URL to the item's icon image. |
gridSize | string | Inventory grid size (e.g. 1x2). |
width | number | Inventory width in slots. |
height | number | Inventory height in slots. |
weight | number | Item weight in kg. |
sellPrice | number | Best sell price across all traders. |
sellPricePerSlot | number | Sell price divided by the number of inventory slots it takes up. |
wikiUrl | string | Link to the item's wiki page. |
lastUpdated | string | ISO 8601 timestamp of the last price update for this item. |
url | string | Direct link to the item on gzwitems.com. |
Root Fields
| Field | Type | Description |
|---|---|---|
items | array | Array of all item objects. |
lastUpdated | string | ISO 8601 timestamp of the most recent update across all items. |
totalItems | number | Total number of items in the database. |