Skip to main content
GET
/
v0
/
wallet
/
trade
/
order
/
{orderId}
Get Order
curl --request GET \
  --url https://api-bluvo.com/v0/wallet/trade/order/{orderId} \
  --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>'
{
  "orderId": "OABC12-DEF34-GHIJKL",
  "exchange": "kraken",
  "status": "filled",
  "rawStatus": "closed",
  "volume": "70.00000000",
  "executedVolume": "70.00000000",
  "cost": "9.12345",
  "averagePrice": "0.130335",
  "fee": "0.03649",
  "openedAt": 1770000000,
  "closedAt": 1770000002,
  "description": {
    "pair": "XDGUSDC",
    "side": "sell",
    "type": "market"
  },
  "rawResponse": {
    "status": "closed",
    "vol": "70.00000000",
    "vol_exec": "70.00000000"
  }
}

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

Path Parameters

orderId
string
required

Order ID returned by Place Order

Response

Successful response

orderId
string
required
exchange
string
required
status
enum<string>
required
Available options:
open,
filled,
canceled,
expired,
unknown
rawStatus
string
required
volume
string
executedVolume
string
cost
string
averagePrice
string
fee
string
openedAt
number
closedAt
number
description
object
rawResponse
any