Skip to main content
POST
/
api
/
v1
/
account
/
executed_history
Query executed order history by single market
curl --request POST \
  --url https://whitebit.com/api/v1/account/executed_history \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "market": "BTC_USDT",
  "offset": 0,
  "limit": 100
}
'
{
  "success": true,
  "message": "",
  "result": [
    {
      "id": 160305483,
      "clientOrderId": "order1987111",
      "time": 1594667731.724403,
      "side": "sell",
      "role": 2,
      "amount": "0.000076",
      "price": "9264.21",
      "deal": "0.70407996",
      "fee": "0.00070407996"
    }
  ]
}

Authorizations

X-TXC-APIKEY
string
header
required

API key authentication requires three headers:

  • X-TXC-APIKEY: Your API key
  • X-TXC-PAYLOAD: Base64-encoded JSON payload
  • X-TXC-SIGNATURE: HMAC SHA512 signature of the payload

Body

application/json
market
string
required

Requested available market. Example: BTC_USDT

Example:

"BTC_USDT"

limit
integer
default:50

LIMIT is a special clause used to limit records that a particular query can return. Default: 50, Min: 1, Max: 100

Required range: 1 <= x <= 100
Example:

100

offset
integer
default:0

If you want the request to return entries starting from a particular line, you can use OFFSET clause to tell it where it should start. Default: 0, Min: 0, Max: 10000

Required range: 0 <= x <= 10000
Example:

0

request
string

Request path

nonce
integer

Nonce for request

Response

Successful response

success
boolean
Example:

true

message
string
Example:

""

result
object[]