Deposit status
Deposit status
GET
https://pay.skinout.gg/api/v1/deposit/status
The method returns the status of a previously created deposit.
Query Parameters
payment_id*
String
Deposit ID in your system
*One of the parameters payment_id or transaction_id is required
transaction_id*
String
Deposit ID in Skinout Pay
*One of the parameters payment_id or transaction_id is required
Headers
{
"success": true,
"payment_id": "394",
"transaction_id": "84238",
"time": "1689902243",
"steamid": "76561198136965086",
"status": "success",
"currency": "USD",
"currency_rate": 1,
"amount_currency": "32.19",
"amount_usd": 32190,
"skins": [
{
"name": "AK-47 | Asimov (field-tested)",
"price": 32190,
"image": "https://steamcommunity-a.akamaihd.net/economy/image/...",
}
]
}
Response params 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