- 快速开始
- 接口详情
- 1️⃣ 饰品指数
- 2️⃣ 饰品详情
- 3️⃣ 涨跌/热门排行
- 4️⃣ 挂刀行情数据
- 5️⃣ 实时成交数据(暂停更新)
- 6️⃣ 库存监控
- 7️⃣ 武器箱数据
- 8️⃣ Banana(挂香蕉)数据(停止更新)
获取单件Banana图表数据
POST
/api/v1/info/get_banana_chart
api
公告:该接口数据已暂停更新
请求参数
Header 参数
ApiToken
string
必需
默认值:
{{APITOKEN}}
Body 参数application/json
good_id
integer
Banana的饰品id
示例
{
"good_id": 17
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.csqaq.com/api/v1/info/get_banana_chart' \
--header 'ApiToken;' \
--header 'Content-Type: application/json' \
--data-raw '{
"good_id": 17
}'
返回响应
🟢200成功
application/json
Body
code
integer
响应状态码
msg
string
响应信息
data
array [object {10}]
响应数据
steam_sell_price
number
steam在售价
steam_sell_price_usd
number
steam在售价(美区 )
steam_sell_num
integer | null
steam在售数量
steam_buy_price
number | null
steam求购价
steam_buy_num
integer | null
steam求购数量
steam_buy_price_usd
number | null
steam求购价(美区)
steam_buy_num_usd
integer | null
steam求购数量(美区)
turnover_num_usd
integer
成交数量
turnover_avg_price_usd
number | integer | null
成交均价
created_at
string
数据创建时间
示例
{
"code": 200,
"msg": "Success",
"data": [
{
"steam_sell_price": 0.13,
"steam_sell_price_usd": 0.04,
"steam_sell_num": 15966,
"steam_buy_price": 0.12,
"steam_buy_num": 12128,
"steam_buy_price_usd": 0.03,
"steam_buy_num_usd": 3338,
"turnover_num_usd": 832,
"turnover_avg_price_usd": 0.03,
"created_at": "2024-06-26T15:06:25"
},
{
"steam_sell_price": 0.13,
"steam_sell_price_usd": 0.04,
"steam_sell_num": 15967,
"steam_buy_price": 0.12,
"steam_buy_num": 12126,
"steam_buy_price_usd": 0.03,
"steam_buy_num_usd": 3336,
"turnover_num_usd": 842,
"turnover_avg_price_usd": 0.03,
"created_at": "2024-06-26T15:22:46"
}
]
}
🟠422Validation Error