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
payment_id

Deposit ID in your system

transaction_id

Deposit ID in Skinout Pay

time

Timestamp of deposit creation in Unix timestamp

steamid

User Steam64id

status

Deposit status. Can be - success, pending, failed

currency

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

currency_rate

Currency exchange rate to USD

amount_currency

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

amount_usd

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

skins

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

Last updated