Deposit history

GET https://pay.skinout.gg/api/v1/deposit/history

The method returns a list of deposits within 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": "1884887",
            "transaction_id": "614095",
            "time": "1729308373",
            "steamid": "76561199375766924",
            "currency": "RUB",
            "currency_rate": "95",
            "status": "success",
            "amount_currency": "88.35",
            "amount_usd": 930,
            "items": [
                {
                    "name": "Dreams & Nightmares Case",
                    "price": 685
                },
                {
                    "name": "Glock-18 | Moonrise (Battle-Scarred)",
                    "price": 245
                }
            ]
        },
        {
            "payment_id": "1884886",
            "transaction_id": "614094",
            "time": "1729308258",
            "steamid": "76561199121707757",
            "currency": "RUB",
            "currency_rate": "95",
            "status": "pending"
        },
    ],
    "total_count": "2"
}

Response params description

The response will contain items array that includes the following data:

PARAM
DESCRIPTION

Deposit ID in your system

Deposit ID in Skinout Pay

Timestamp of deposit creation in Unix timestamp

User Steam64id

Deposit status. Can be - in_hold, success, pending, failed

Unix timestamp time If deposit status is in_hold: shows the time when the deposit will move from in_hold status to success status, if the user does not cancel the tradeoffer

The currency in which the user will be shown the cost of the skins

Currency exchange rate to USD

Deposit amount in currency. Parameter will only be returned if status=success

Deposit amount in USD * 1000. This amount will be credited to the project balance in Skinout Pay. Parameter will be returned only if status=success

An array that contains a list of deposit skins and their cost. Parameter will only be returned if status=success

Last updated