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
Name
Value
Content-Type*
application/json
Api-Key*
Query Parameters
Name
Type
Description
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:
PARAM
DESCRIPTION
payment_id
Purchase ID in your system
transaction_id
Purchase ID in the Skinout Pay system
steamid
User Steam64id
time
Purchase creation time in unix timestamp
status
Purchase status.
amount
Purchase amount in USD * 1000
trade_id
Steam Trade Offer ID. (if the trade has been created)
skin
Object with data of the purchased skin
Last updated