POST /v1/orders

Place a New Order.

Name Description
User-Agent *
string
(header)
Some name for app that use API
EX-ACCESS-KEY *
string
(header)
The api key as a string.
EX-ACCESS-SIGN *
string
(header)
The EX-ACCESS-SIGN header is generated by creating a sha256 HMAC using the secret key on the prehash string (timestamp + nonce) (where + represents string concatenation) and base64-encode the output. The timestamp value is the same as the EX-ACCESS-TIMESTAMP header.
EX-ACCESS-NONCE *
string
(header)
An increasing integer.
EX-ACCESS-TIMESTAMP *
string
(header)
The (unix)timestamp that was used to generate your signature.

Request body

{
  "instrument_id": "btcusd",
  "volume": "0.01",
  "price": "0.100",
  "side": "buy"
}

Responses

Code Description
200
OK

 

{
  "id": "f40d68a2-d155-455d-97b8-a856cb00d86c",
  "price": "0.20000000",
  "volume": "0.03000000",
  "instrument_id": "btcusd",
  "side": "buy",
  "type": "limit",
  "state": "open"
}