1. 出售
ECOSteam
  • ECO开放平台接入流程
  • RSA公私钥生成、签名
  • 通用请求参数与响应
  • 订单状态处理流程说明
  • 回调通知服务
  • WebSocket监听商品变动消息
  • 服务商入驻流程
  • 商户
    • 获取用户钱包金额
      POST
    • 获取资金流水
      POST
    • 求购账户转入转出
      POST
    • 查询已绑定steam账号列表
      POST
    • 验证交易链接
      POST
    • 获取steamID
      POST
  • 市场
    • 获取steam市场名称和在售价格(推荐)
      POST
    • 品类查询(不推荐)
      POST
    • 在售/预售商品列表
      POST
    • 批量查询在售商品价格
      POST
    • 批量获取商品详情
      POST
    • 批量查询在售商品状态
      POST
    • 获取检视图
      POST
  • 购买
    • 指定商品购买
    • 指定类别购买
    • 购买预售商品
    • P2P购买订单
  • 订单
    • 历史订单查询
    • 查询订单状态
    • 查询购买订单列表
    • 查询订单详情
    • 查询报价信息
    • 处罚订单查询
    • 买家取消订单
    • 举报卖家撤回报价
    • 买家确认订单交易成功
    • 查询出售订单列表
    • 卖家订单发送报价
    • 用户接受报价
    • 用户一键处理报价
    • 卖家查询订单状态
    • 卖家查询订单详情
    • 卖家查询报价对应订单
    • 预售订单交易链接修改
  • 出售
    • 刷新用户Steam库存
      POST
    • 查询Steam库存
      POST
    • 出售商品列表
      POST
    • 上架库存
      POST
    • 批量改价
      POST
    • 预售商品上架/改价
      POST
    • 下架在售/预售商品
      POST
    • 用户店铺状态设置
      POST
  • 求购
    • 发布求购信息
    • 编辑求购信息
    • 终止求购信息
    • 批量暂停/开启/删除求购信息
    • 批量更新求购收货链接
    • 获取我的求购分页列表
    • 秒出货库存查询
    • 秒出货求购供应
    • Steam库存查询
    • 创建交易存款
    • 创建交易报价
  • 出租
    • 可租可售上架/可租可售改价
    • 下架出租商品
    • 查询自己出租的商品
    • 查询出租订单列表
    • 卖家查询出租订单详情
  • 汰换合炉
    • 创建合炉
    • 我的合炉列表
    • 合炉支付
  • 其他
    • 解封超时未收货用户
    • 获取交易汇率
  • 服务商
    • 获取服务商绑定的用户集合
  1. 出售

出售商品列表

POST
/Api/Selling/GetSellGoodsList

请求参数

Header 参数

Body 参数application/json-patch+json

示例
{
    "PageIndex": 1,
    "PageSize": 1,
    "SteamId": "string",
    "GameId": "string",
    "PartnerId": "string",
    "Timestamp": "string",
    "Sign": "string",
    "ServiceProviderId": "string",
    "OpenID": "string"
}

请求示例代码

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://openapi.ecosteam.cn/Api/Selling/GetSellGoodsList' \
--header 'language;' \
--header 'Content-Type: application/json-patch+json' \
--data-raw '{
    "PageIndex": 1,
    "PageSize": 1,
    "SteamId": "string",
    "GameId": "string",
    "PartnerId": "string",
    "Timestamp": "string",
    "Sign": "string",
    "ServiceProviderId": "string",
    "OpenID": "string"
}'

返回响应

🟢200成功
application/json
OK
Body

示例
{
    "ResultCode": "string",
    "ResultMsg": "string",
    "ResultData": {
        "PageIndex": 0,
        "PageSize": 0,
        "TotalRecord": 0,
        "PageResult": [
            {
                "GoodsNum": "string",
                "StockId": "string",
                "Price": 0,
                "sellDate": 0,
                "GoodsName": "string",
                "AssetId": "string",
                "HashName": "string",
                "GoodsImg": "string",
                "State": 0,
                "SubSidyMoney": 0,
                "SellerDescription": "string",
                "IsSecret": true,
                "PreGoodsId": "string",
                "SteamPrice": 0,
                "ClassID": "string",
                "PublishTime": "2019-08-24T14:15:22.123Z",
                "Items": [
                    {
                        "GoodsNum": "string",
                        "StockId": "string",
                        "CDTime": "string",
                        "Price": 0,
                        "sellDate": 0,
                        "AssetId": "string",
                        "State": 0,
                        "SubSidyMoney": 0,
                        "SellerDescription": "string",
                        "IsSecret": true,
                        "BasePrice": 0,
                        "Remark": "string",
                        "Visible": true,
                        "IsShopOnline": true,
                        "BottomPrice": 0,
                        "SellCount": 0,
                        "IsGems": true
                    }
                ],
                "SteamId": "string",
                "GameId": "string",
                "IsShowLabel": true,
                "tradeType": 1,
                "IsShowSubSidy": true,
                "IsFreeWithdrawal": true,
                "TradableTime": "2019-08-24T14:15:22.123Z",
                "Visible": true,
                "IsShopOnline": true,
                "SellCount": 0,
                "IsGems": true
            }
        ]
    }
}
修改于 2026-04-16 10:01:21
上一页
查询Steam库存
下一页
上架库存
Built with