List of available skins
List of available skins
GET
https://pay.skinout.gg/api/v1/withdraw/list
The method returns the list of skins available for purchase
Query Parameters
group
String
By default the method returns the list grouped by skin name and the number of skins with a certain name. If group=0 is set, the full list will be returned, without grouping by name.
Headers
{
"success": true,
"skins": [
{
"name": "AK-47 | Safari Mesh (Battle-Scarred)",
"price": 120,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "2"
},
{
"name": "AK-47 | Safari Mesh (Field-Tested)",
"price": 120,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "3"
},
{
"name": "Dual Berettas | Dualing Dragons (Well-Worn)",
"price": 140,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "1"
},
{
"name": "Glock-18 | Warhawk (Field-Tested)",
"price": 120,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "1"
},
{
"name": "MP9 | Deadly Poison (Field-Tested)",
"price": 120,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "2"
},
{
"name": "Nova | Plume (Factory New)",
"price": 970,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "6"
},
{
"name": "Snakebite Case",
"price": 270,
"img": "https://steamcommunity-a.akamaihd.net/...",
"count": "1"
}
]
}
Response params description
skins[]
Array containing the list of skins available for withdraw
skins[].name
Skin name (market_hash_name)
skins[].img
Link to skin image
skins[].price
Skin price in currency USD * 1000.
When requesting the list of skins with grouping (group=1) the minimum cost of the skin will be shown
skins[].count
The number of available skins of skins.
Parameter will be returned only when the list of skins with grouping (group=1) is requested.
skins[].skin_id
Skin ID.
Parameter will be returned only when the list of skins without grouping (group=0) is requested.
Last updated