Path parameters
-
service_uuid
uuid Required Service ID
Query parameters
-
filter[status]
integer Transaction status (available statuses are shown in "Get buy status" endpoint details in docs - data.status)
-
filter[since]
date Since when show transactions (in YYYY-MM-DD HH:MM:SS format)
-
filter[to]
date To when show transactions (in YYYY-MM-DD HH:MM:SS format)
-
page
integer Page number
-
limit
integer Limit (min: 1 max: 100 - default: 10)
GET
/v1/services/{service_uuid}/buys/history
curl \
--request GET 'https://api.skinsmoney.gg/v1/services/661512bf-4dd2-4404-a58a-210acf868665/buys/history' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": "01957693-9a2e-7162-8c9f-bf6950403d6d",
"status": -1,
"item_id": 123,
"custom_id": null,
"created_at": "2025-03-08T16:25:41.000000Z",
"deal_price": "0.133",
"updated_at": "2025-03-08T16:47:14.000000Z",
"steam_offer_id": "1111222211"
},
{
"id": "019580b8-9348-71bd-8ce6-293f62e93dc5",
"status": 0,
"item_id": 321,
"custom_id": "test123",
"created_at": "2025-03-10T15:42:17.000000Z",
"deal_price": "3.160",
"updated_at": "2025-03-10T15:42:17.000000Z",
"steam_offer_id": "3333222111"
},
{
"id": "019581a7-9072-7016-a896-b5cadf6aa136",
"status": 0,
"item_id": 3333333,
"custom_id": null,
"created_at": "2025-03-10T20:03:19.000000Z",
"deal_price": "43.160",
"updated_at": "2025-03-10T20:03:19.000000Z",
"steam_offer_id": "4444111122"
}
],
"type": "pagination",
"success": true,
"pagination": {
"links": {
"next_page": null,
"first_page": "https://api.skinsmoney.gg/v1/services/661512bf-4dd2-4404-a58a-210acf868665/buys/history?page=1",
"previous_page": null
},
"pages": 1,
"total": 3,
"per_page": 10,
"current_page": 1
}
}