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

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

Purchase ID in your system

Purchase ID in the Skinout Pay system

User Steam64id

Purchase creation time in unix timestamp

Purchase status.

Purchase amount in USD * 1000

Steam Trade Offer ID. (if the trade has been created)

Object with data of the purchased skin

Unix 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