コンテンツにスキップ

注文約定詳細の照会

エンドポイント: /v1/futures/order/trades

リクエスト認証

必要

リクエストメソッド: GET

Bash
curl -X GET "https://oapi.websea.com/v1/futures/order/trades?order_id=BM4823487423842" \
  -H "Token: YOUR_TOKEN" \
  -H "Nonce: 1700000000_abcd1" \
  -H "Signature: GENERATED_SIGNATURE"

リクエストパラメータ

パラメータ名 必須 説明
order_id はい string BM4823487423842 注文番号

レスポンスパラメータ

パラメータ名 必須 説明
errno はい int 0 ステータスコード
errmsg はい string success ステータスメッセージ
result はい object 例を参照 レスポンス結果

resultパラメータの説明

パラメータ名 必須 説明
order_id はい string BG5000181583375122413SZXEIX 注文番号
ctime はい int 1576746253 約定日時
symbol はい string ETH-USDT 取引ペア
price はい string 1 約定価格
amount はい int 0 約定数量
bood はい string 10 証拠金
profit はい string 10 損益
fee はい string 0 手数料

レスポンス例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": [
        {
            "order_id": "BG5000181583375122413SZXEIX",
            "ctime": 1576746253,
            "symbol": "ETH-USDT",
            "price": "1",
            "amount": 0,
            "bood": "10",
            "profit": "10",
            "fee": "0"
        }
    ]
}