1. 首页
  2. 服务器Wiki
  3. 金融交易
  4. API文档
菜单
本页目录

这页面不是给普通玩家看的

如果你有兴趣,并且你有编程经验,无需多言你就可以自然而然能看懂这个页面。

根据ApiKey获取uuid

  1. 前端请求示例代码:
curl --location --request GET 'https://spot.viewcb.net/api/getApiKey' \
--header 'X-API-Key: ddaf3f5b35934d88ab2f38f6ee4ebf42195b9d519fd'
  1. 响应示例:
{
"uuid": "string"
}

根据ApiKey获取玩家所有挂单

  1. 前端请求示例代码:
curl --location --request GET 'https://spot.viewcb.net/api/getPlayerOrders' \
--header 'X-API-Key: ddaf3f5b35934d88ab2f38f6ee4ebf42195b9d519fd'
  1. 响应示例:
{
    "buyOrders": [
        "string"
    ],
    "sellOrders": [
        {
            "id": 0,
            "type": "string",
            "item": "string",
            "amount": 0,
            "price": 0,
            "status": "string",
            "timestamp": "string"
        }
    ]
}

获取可交易的物品种类列表

  1. 前端请求示例代码:
curl --location --request GET 'https://spot.viewcb.net/api/getAllowedItems'
  1. 响应示例:
{
    "allowedItems": [
        "string"
    ]
}

获取未成交的订单

  1. 前端请求示例代码:
curl --location --request GET 'https://spot.viewcb.net/api/getOpenOrders?item=Diamond&type=BUY'
  1. 响应示例:
{
    "orders": [
        {
            "id": 0,
            "timestamp": "string",
            "price": 0,
            "amount": 0
        }
    ]
}

获取物品所有已完成订单

  1. 前端请求示例代码:
curl --location --request GET 'https://spot.viewcb.net/api/getCompletedOrders?item=DIAMOND'
  1. 响应示例:
{
    "completedOrders": [
        {
            "timestamp": "string",
            "price": 0
        }
    ]
}

挂卖单出售物品

  1. 前端请求示例代码:
curl --location --request POST 'https://spot.viewcb.net/api/sell' \
--header 'X-API-Key: ddaf3f5b35934d88ab2f38f6ee4ebf42195b9d519fd' \
--header 'Content-Type: application/json' \
--data-raw '{
  "item": "IRON_INGOT",
  "amount": 1,
  "price": 10
}'
  1. 响应示例:
{
    "message": "string",
    "orderId": 0
}

挂买单购买物品

  1. 前端请求示例代码:
curl --location --request POST 'https://spot.viewcb.net/api/buy' \
--header 'X-API-Key: ddaf3f5b35934d88ab2f38f6ee4ebf42195b9d519fd' \
--header 'Content-Type: application/json' \
--data-raw '{
  "item": "DIAMOND",
  "amount": 3,
  "price": 12
}'
  1. 响应示例:
{
    "message": "已放置购买订单",
    "orderId": 9
}

根据id取消挂单委托

  1. 前端请求示例代码:
curl --location --request POST 'https://spot.viewcb.net/api/cancelOrder' \
--header 'X-API-Key: ddaf3f5b35934d88ab2f38f6ee4ebf42195b9d519fd' \
--header 'Content-Type: application/json' \
--data-raw '{
  "orderId": 37
}'
  1. 响应示例:
{
    "message": "订单已取消"
}