Purchase history
GET https://pay.skinout.gg/api/v1/withdraw/history
The method returns the list of skin purchases in the specified time period
Headers
Content-Type*
application/json
Api-Key*
Query Parameters
start_date*
int
Start date (unix timestamp)
end_date*
int
End date (unix timestamp)
limit
int
default: 100 max: 1000
offset
int
default: 0
Response
{
"success": true,
"items": [
{
"payment_id": "363444",
"transaction_id": "352078",
"steamid": "76561199521290406",
"time": "1729311382",
"status": "accepted",
"amount": 1225,
"trade_id": "7476251151",
"skin": {
"name": "Desert Eagle | Meteorite (Factory New)",
"price": 1225
}
},
{
"payment_id": "363441",
"transaction_id": "352077",
"steamid": "76561199521290406",
"time": "1729310998",
"status": "accepted",
"amount": 707,
"trade_id": "7476240405",
"skin": {
"name": "MP7 | Just Smile (Battle-Scarred)",
"price": 707
}
}
],
"total_count": "2"
}Response params description
The response will contain items array that includes the following data:
payment_idPurchase ID in your system
transaction_idPurchase ID in the Skinout Pay system
steamidUser Steam64id
timePurchase creation time in unix timestamp
statusPurchase status.
amountPurchase amount in USD * 1000
trade_idSteam Trade Offer ID. (if the trade has been created)
skinObject with data of the purchased skin
time_settlementUnix timestamp Time when trade offer cannot be reversed via Steam Trade protection The parameter will only be passed if tradeoffer was successfully sent in steam.
Last updated