balanceops
balance
- DELCancel a withdrawal
- POSTClaim a withdrawal
- POSTDeposit an amount
- POSTInitialize a vault
- POSTProcess a withdrawal
- POSTReactivate a vault
- POSTStake an amount
- POSTStake an amount from balance
- POSTBegin unstaking
- POSTCancel an unstake
- POSTProcess unstake requests
- GETRetrieve a list of unstakes
- POSTWithdraw an amount
blast_points
candle
gameassets
market
admin
- POSTChange market title
- POSTChange market icon url
- GETGet user profile cache
- GETGet market tiers
- POSTAdd market tier
- DELRemove market tier
- POSTEdit market tier
- GETGet market profile tiers
- POSTAdd profile market tier
- DELRemove market profile tier
- GETGet market special tiers
- POSTAdd special market tier
- DELRemove market special tier
- POSTEdit special market tier
- GETGet which tiers
onboarding
portfolio
position
referral
secrets
profiledata
vaultdata
order
Create a new order
Create a new order with the given details
POST
/
orders
Copy
{
"error": "<string>",
"pagination": {
"limit": 123,
"order": "<string>",
"page": 123,
"total": 123
},
"result": [
{
"client_order_id": "<string>",
"id": "<string>",
"is_liquidation": true,
"market_id": "<string>",
"price": 123,
"profile_id": 123,
"side": "<string>",
"size": 123,
"size_percent": 123,
"status": "<string>",
"time_in_force": "<string>",
"trigger_price": 123,
"type": "<string>"
}
],
"success": true
}
Body
application/json
Order Create Request
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
Copy
{
"error": "<string>",
"pagination": {
"limit": 123,
"order": "<string>",
"page": 123,
"total": 123
},
"result": [
{
"client_order_id": "<string>",
"id": "<string>",
"is_liquidation": true,
"market_id": "<string>",
"price": 123,
"profile_id": 123,
"side": "<string>",
"size": 123,
"size_percent": 123,
"status": "<string>",
"time_in_force": "<string>",
"trigger_price": 123,
"type": "<string>"
}
],
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.