fill
Retrieve fills list
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
fill
Retrieve fills list
Retrieves a list of fills for the user’s profile, filtered by market ID and a time range.
GET
/
fills
{
"error": "<string>",
"pagination": {
"limit": 123,
"order": "<string>",
"page": 123,
"total": 123
},
"result": [
{
"client_order_id": "<string>",
"fee": 123,
"id": "<string>",
"is_maker": true,
"liquidation": true,
"market_id": "<string>",
"order_id": "<string>",
"price": 123,
"profile_id": 123,
"side": "<string>",
"size": 123,
"timestamp": 123,
"trade_id": "<string>"
}
],
"success": true
}
Query Parameters
Market ID
Start time in Unix format
End time in Unix format
Response
200
application/json
OK
{
"error": "<string>",
"pagination": {
"limit": 123,
"order": "<string>",
"page": 123,
"total": 123
},
"result": [
{
"client_order_id": "<string>",
"fee": 123,
"id": "<string>",
"is_maker": true,
"liquidation": true,
"market_id": "<string>",
"order_id": "<string>",
"price": 123,
"profile_id": 123,
"side": "<string>",
"size": 123,
"timestamp": 123,
"trade_id": "<string>"
}
],
"success": true
}