LogoLogo
  • EN
    • Entry
    • Authentication
  • WebHook signature verification
  • Deposit skins
    • Create deposit
    • Deposit status
    • Deposit history
    • WebHook
  • Withdraw skins
    • List of available skins
    • Skins search
    • Buy skin
    • Purchase status
    • Purchase history
    • WebHook
  • Other
    • Project balance
    • List of available currencies
  • ru
    • Вступление
    • Аутентификация
    • Проверка подписи WebHook
    • Депозит скинами
      • Создание депозита
      • Статус депозита
      • История депозитов
      • WebHook
    • Вывод скинов
      • Список доступных скинов
      • Поиск скинов
      • Покупка скина
      • Статус покупки
      • История покупок скинов
      • WebHook
    • Другое
      • Баланс проекта
      • Список доступных валют
Powered by GitBook
On this page
  • Deposit status
  • Response params description
  1. Deposit skins

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

Name
Type
Description

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

Name
Type
Description

Api-Key

String

{
    "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/...",
        }
    ]
}
{
    "success": true,
    "payment_id": 394,
    "transaction_id": 84238,
    "time": "1689902243",
    "steamid": "76561198136965086",
    "status": "pending", // failed
    "currency": "USD",
    "currency_rate": 1,
}

Response params description

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 - success, pending, failed

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

PreviousCreate depositNextDeposit history

Last updated 2 months ago

payment_id
transaction_id
time
steamid
status
currency
currency_rate
amount_currency
amount_usd
skins
Project Api-Key