Get buy status

GET /v1/services/{service_uuid}/buys/{buy_uuid}

Path parameters

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • success boolean
    • type string
    • data object

      Additional properties are allowed.

      Hide data attributes Show data attributes object
      • id string
      • status integer Required

        Possible status values: 0 => INITIATED, 1 => WAITING_ACCEPT_BY_RECEIVER, 2 => SUCCESS, -1 => ERR_EXPIRED, -2 => ERR_CANCELLED, -3 => ERR_INTERNAL, -4 => ERR_STEAM_ISSUES, -5 => ERR_RECEIVER_NOT_TRADABLE, -6 => ERR_RECEIVER_STEAM_CANCELLED, -7 => ERR_RECEIVER_TRADE_URL_INVALID, -8 => ERR_SENDER_STEAM_CANCELLED, -9 => ERR_SKIN_NO_IN_PRICE, -10 => ERR_SKIN_UNAVAILABLE, -11 => ERR_RECEIVER_TOO_MANY_FAILED_ATTEMPTS, -12 => ERR_RECEIVER_INVENTORY_PRIVATE

      • item_id integer
GET /v1/services/{service_uuid}/buys/{buy_uuid}
curl \
 --request GET https://api.skinsmoney.gg/v1/services/661512bf-4dd2-4404-a58a-210acf868665/buys/01957693-9a2e-7162-8c9f-bf6950403d6d \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "01957693-9a2e-7162-8c9f-bf6950403d6d",
    "status": -1,
    "item_id": 123321,
    "custom_id": "aabbcc",
    "created_at": "2025-03-08T16:25:41.000000Z",
    "deal_price": "0.15",
    "updated_at": "2025-03-08T16:47:14.000000Z",
    "steam_offer_id": "111222111"
  },
  "type": "response",
  "success": true
}