Submit order transaction

Create an order

POST /order/submit

Headers

Name
Value

X-API-KEY

<YOUR_API_KEY>

Body

// schema type

SignedTxs: []string
Name
Type
Schema
Description

order_id

string *

The id of the order created previously

signed_txs

string[] *

SignedTxs

Response

// Repsonse Type

Order: {
    "id": "string",
    "expiry": integer,
    "trading_pair": "string",
    "order_side": "string",
    "slippage": float
    "price": float
    "total_quantity": integer,
    "created_at": "string",
    "updated_at": "string"
},

FillOrderTxHashes: string[]
{
    "order": Order
    "fill_order_tx_hashes": FillOrderTxHashes
}

Last updated