Items API
The Items API provides access to all in-game items, including their properties, stats, crafting requirements, and usage information.
Endpoint
Authentication
All requests require the X-API-Key header. See Authentication for details.
Query Parameters
Response
Item Object
Examples
Get All Items
Returns a list of all items in the game (excluding items marked as hidden from API).
Response:
Get Specific Item
Response:
JavaScript Example
Item Types
Items have a numeric type field with the following values:
- 1 - Consumable - Potions, food items, scrolls with various effects
- 2 - Equipment - Weapons, armour, and wearable items
- 3 - Material - Crafting components and materials
- 4 - Quest - Special items for missions and quests
- 5 - Resource - Raw resources and tradeable goods
Equipment Types
For items with type: 2, the equipmentType field specifies the slot:
- 1 - Head (helmets, hats, hoods)
- 2 - Torso (shirts, armour, jackets)
- 3 - Mainhand (weapons, tools)
- 5 - Waist (belts)
- 6 - Legs (pants, shorts, greaves)
- 7 - Feet (boots, shoes, sandals)
- 13 - Ship (vehicles)
Error Responses
Notes
- Hidden Items: Some items may be hidden from the API and won't appear in responses
- Populated Data: Items are returned with full details including crafting requirements and related information
- Name Parameter: Item names are case-sensitive. Make sure to URL-encode item names with spaces
- All Items: When no
nameparameter is provided, all non-hidden items are returned
Use Cases
- Display item catalogs in external tools
- Build crafting calculators
- Create item databases and wikis
- Implement trade value trackers
- Develop inventory management tools