Skip to main content
POST
/
v0
/
wallet
/
trade
/
order
Place Order
curl --request POST \
  --url https://api-bluvo.com/v0/wallet/trade/order \
  --header 'Content-Type: application/json' \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-id: <api-key>' \
  --header 'x-bluvo-project-id: <api-key>' \
  --header 'x-bluvo-wallet-id: <api-key>' \
  --data '
{
  "routeId": "<string>",
  "volume": "<string>",
  "price": "<string>"
}
'
{
  "orderId": "OABC12-DEF34-GHIJKL",
  "txid": [
    "OABC12-DEF34-GHIJKL"
  ],
  "exchange": "kraken",
  "routeId": "kraken:spot:DOGE-USDC",
  "description": "sell 70.00000000 XDGUSDC @ market",
  "rawResponse": {
    "txid": [
      "OABC12-DEF34-GHIJKL"
    ],
    "descr": {
      "order": "sell 70.00000000 XDGUSDC @ market"
    }
  }
}

Authorizations

x-bluvo-api-key
string
header
required

Bluvo API Key

x-bluvo-org-id
string
header
required

Bluvo Organization ID

x-bluvo-project-id
string
header
required

Bluvo Project ID

x-bluvo-wallet-id
string
header
required

Bluvo Wallet ID

Body

application/json
routeId
string
required
side
enum<string>
required
Available options:
buy,
sell
type
enum<string>
required
Available options:
market,
limit
volume
string
required
Minimum string length: 1
price
string
Minimum string length: 1

Response

Successful response

orderId
string
required
txid
string[]
required
exchange
string
required
routeId
string
required
description
string
required
rawResponse
any