通过marketHashName查询饰品价格
GET
/open/cs2/v1/price/single
请求参数
Query 参数
marketHashName
string
饰品名称
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.steamdt.com/open/cs2/v1/price/single?marketHashName'
返回响应
🟢200成功
application/json
Body
success
boolean
可选
data
array[object (PlatformPriceVO) {7}]
可选
platform
string
平台
platformItemId
string
平台商品id
sellPrice
number
在售价格
sellCount
integer <int64>
在售数量
biddingPrice
number
求购价格
biddingCount
integer <int64>
求购数量
updateTime
integer <int64>
更新时间
errorCode
integer
可选
errorMsg
string
可选
errorData
object
可选
errorCodeStr
string
可选
示例
{
"success": false,
"data": [
{
"platform": "",
"platformItemId": "",
"sellPrice": 0,
"sellCount": 0,
"biddingPrice": 0,
"biddingCount": 0,
"updateTime": 0
}
],
"errorCode": 0,
"errorMsg": "",
"errorData": {},
"errorCodeStr": ""
}
修改于 2025-04-02 06:40:33