Fetch all unique items and their min price and count
Prices are integers. 1000 = $1.00 USD.
Parameters
| Name | Location | Type | Description |
|---|---|---|---|
gameoptional | query | enum | Which game would you like to fetch items from enum: csgo, tf2, rust, dota2 |
minifiedoptional | query | enum | Will return additional data about items if set to 0 enum: 0, 1 |
min_priceoptional | query | number | Minimum item price |
max_priceoptional | query | number | Maximum item price |
searchoptional | query | string | Search by part of the name, ex: 'hardened'. |
singleoptional | query | enum | Will select only one item if set to 1 enum: 0, 1 |
Responses
200 successful operation
{
"success": true,
"items": [
{
"name": "★ Hand Wraps | Cobalt Skulls (Minimal Wear)",
"count": 5,
"min": 937999,
"img": "https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DfVlxgLQFFibKkJQN3wfLYYgJK7dKyg5KKh8j4NrrFnm5D8fp3i-vT_I_KilihriwvOCyveMX6Ll9pORy_pgD8lrvxgJfpvpWamnZn6XUl5SmJm0DjhhlFbedp1PWYH1jNVaUcSqOKBnuCtYczFntLO18msw",
"steam_price": 990000,
"rarity_color": "#EB4B4B",
"type": "Gloves"
}
]
}