Skip to main content
POST
/
api
/
v4
/
convert
/
history
Convert History
curl --request POST \
  --url https://whitebit.com/api/v4/convert/history \
  --header 'Content-Type: application/json' \
  --data '
{
  "fromTicker": "BTC"
}
'
{
"records": [
{
"id": "4030",
"date": 1699020642,
"give": "0.00002901",
"receive": "1",
"rate": "34470.87211306",
"path": [
{
"from": "BTC",
"to": "USDT",
"rate": "34470.87211306"
}
]
}
],
"total": 4,
"limit": 1,
"offset": 0
}

Body

application/json
fromTicker
string

From currency. Example: BTC

Example:

"BTC"

toTicker
string

To currency. Example: USDT

Example:

"USDT"

from
string

From time filter. Example: 1699260637. Default: now()

Example:

"1699260637"

to
string

To time filter. Example: 1699260637. Default: now() +

Example:

"1699260637"

quoteId
string

Quote Id. Example: 4050

Example:

"4050"

limit
string

How many records to receive. Default: 100

Example:

"100"

offset
string

Amount to convert or receive. Default 0

Example:

"0"

nonce
integer

Nonce for request

request
string

Request path

Response

Successful response

records
object[]
total
integer

Total number of records

Example:

4

limit
integer

Limit used in request

Example:

1

offset
integer

Offset used in request

Example:

0