Skip to main content
POST
/
v1
/
orders
Place Order
curl --request POST \
  --url https://api.roxom.com/v1/orders \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Signature: <api-key>' \
  --data '
{
  "instType": "perpetual",
  "orderType": "limit",
  "qty": "<string>",
  "side": "buy",
  "symbol": "<string>",
  "cancelAt": 123,
  "clientOrderId": "<string>",
  "postOnly": true,
  "px": "<string>",
  "reduceOnly": true,
  "timeInForce": "gtc",
  "triggerPx": "<string>",
  "unit": "sats"
}
'
{
  "data": {
    "orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  },
  "error": true
}

Authorizations

X-API-Key
string
header
required

Your API key

X-API-Signature
string
header
required

The signature of the request

Body

application/json
instType
enum<string>
required
Available options:
perpetual,
spot,
btc,
digital,
stock,
index
orderType
enum<string>
required
Available options:
limit,
market,
stop,
stoplimit,
take,
takelimit
qty
string
required
side
enum<string>
required
Available options:
buy,
sell
symbol
string
required
cancelAt
integer<int64> | null
clientOrderId
string | null
postOnly
boolean | null
px
string | null
reduceOnly
boolean | null
timeInForce
enum<string>
Available options:
gtc,
ioc
triggerPx
string | null
unit
enum<string>
Available options:
sats,
btc

Response

200 - application/json

Represents a successful API response wrapper

data
object
required
error
boolean
required
Last modified on March 17, 2026