×
⚡ API Documentation
Use this API to automatically retrieve or convert game assets.
Endpoint
GET /item?id=ITEM_ID
HTML Example
<img src="http://getitems.thug4ff.com/item?id=901035007" />
Python Example
import requests
resp = requests.get("http://getitems.thug4ff.com/item?id=901035007")
with open("icon.png", "wb") as f:
f.write(resp.content)