Path parameters
-
Service ID
Query parameters
-
Array of buy ids/custom ids to check
-
Sent ids field type. Allowed values: buyId,customId
GET
/v1/services/{service_uuid}/buys/status/many
curl \
--request GET https://api.skinsmoney.gg/v1/services/661512bf-4dd2-4404-a58a-210acf868665/buys/status/many?id%5B%5D=%5B%2201957693-9a2e-7162-8c9f-bf6950403d6d%22%2C%2201957693-9a2e-7162-8c9f-bf6950403d6e%22%5D&fieldType=buyId \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"fieldType":"buyId","id":["px"]}'
Request examples
{
"fieldType": "buyId",
"id": [
"px"
]
}
Response examples (200)
{
"data": [
{
"id": "01957693-9a2e-7162-8c9f-bf6950403d6d",
"status": -1,
"item_id": 321123,
"custom_id": "ccbbaa",
"created_at": "2025-03-08T16:25:41.000000Z",
"deal_price": "100.15",
"updated_at": "2025-03-08T16:47:14.000000Z",
"steam_offer_id": "1112223111"
},
{
"id": "019580b8-9348-71bd-8ce6-293f62e93dc5",
"status": 2,
"item_id": 123123,
"custom_id": "aabbcc",
"created_at": "2025-03-10T15:42:17.000000Z",
"deal_price": "33.16",
"updated_at": "2025-03-10T15:42:17.000000Z",
"steam_offer_id": "1112223112"
}
],
"type": "response",
"success": true
}