API Documentation
This is a list of all the API endpoints that are available to use in your apps.
/items/icon/{itemVnum}
itemVnum
- The VNum of the item you want to get the icon of.
If image is found return image/png
If not return error 400 and image with question mark
Snippet
<img
src="https://itempicker.atlagaming.eu/api/items/icon/1"
/>
/items/data/{itemVnum}
itemVnum
- The VNum of the item you want to get the data.
If found return json with item data (the same as items.json)
If not found return error 400
/monsters/icon/{monsterVnum}
monsterVnum
- The VNum of the monster or NPC you want to get the icon of.
If image is found return image/png
If not return error 400 and image with question mark
Snippet
<img
src="https://itempicker.atlagaming.eu/api/monsters/icon/1"
/>
/maps/minimap/{mapId}
mapId
- Id of the map.
If found return image/png
If not return error 400
Snippet
<img
src="https://itempicker.atlagaming.eu/api/maps/minimap/1"
/>
/maps/shadow/{mapId}
mapId
- Id of the map.
If found return image/png
If not return error 400
Snippet
<img
src="https://itempicker.atlagaming.eu/api/maps/shadow/1"
/>
JSON files
Summary
All endpoints are automatically updated when new game updates are released.