Trading Endpoints
Get Fills
Trading Endpoints
Get Fills
Get all the fills of the user
GET
/
api
/
v1
/
spotorder
/
fills
curl --request GET \
--url https://apiserver.beratrade.io/api/v1/spotorder/fills \
--header 'Bliq-Key: <bliq-key>' \
--header 'Bliq-Secret: <bliq-secret>'
{
"body": {
"fills": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"MarketId": 123,
"OrderId": 123,
"CounterPartyOrderId": 123,
"SubaccountId": "<string>",
"Side": "BUY",
"Liquidity": "TAKER",
"Pricex18": "<string>",
"Amountx18": "<string>",
"Feex18": "<string>"
}
]
},
"message": "<string>",
"status": 123
}
Headers
bliq_key
obtained during authentication
bliq_secret
obtained during authentication
Response
200
application/json
List of user fills
Available options:
BUY
, SELL
Available options:
TAKER
, MAKER
curl --request GET \
--url https://apiserver.beratrade.io/api/v1/spotorder/fills \
--header 'Bliq-Key: <bliq-key>' \
--header 'Bliq-Secret: <bliq-secret>'
{
"body": {
"fills": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"MarketId": 123,
"OrderId": 123,
"CounterPartyOrderId": 123,
"SubaccountId": "<string>",
"Side": "BUY",
"Liquidity": "TAKER",
"Pricex18": "<string>",
"Amountx18": "<string>",
"Feex18": "<string>"
}
]
},
"message": "<string>",
"status": 123
}