Skip to main content
cURL
curl --request GET \
  --url https://test.deribit.com/api/v2/private/get_transfers \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": 7606,
  "method": "private/get_transfers",
  "params": {
    "currency": "BTC",
    "count": 10
  }
}
'
{
  "jsonrpc": "2.0",
  "id": 7606,
  "result": {
    "count": 2,
    "data": [
      {
        "amount": 0.2,
        "created_timestamp": 1550579457727,
        "currency": "BTC",
        "direction": "payment",
        "id": 2,
        "other_side": "2MzyQc5Tkik61kJbEpJV5D5H9VfWHZK9Sgy",
        "state": "prepared",
        "type": "user",
        "updated_timestamp": 1550579457727
      },
      {
        "amount": 0.3,
        "created_timestamp": 1550579255800,
        "currency": "BTC",
        "direction": "payment",
        "id": 1,
        "other_side": "new_user_1_1",
        "state": "confirmed",
        "type": "subaccount",
        "updated_timestamp": 1550579255800
      }
    ]
  }
}

Query Parameters

currency
enum<string>
required

The currency symbol Currency, i.e "BTC", "ETH", "USDC"

Available options:
BTC,
ETH,
USDC,
USDT,
EURR
count
integer

Number of requested items, default - 10, maximum - 1000

Required range: 1 <= x <= 1000
offset
integer

The offset for pagination, default - 0

Example:

10

Response

200 - application/json

Success response

jsonrpc
enum<string>
required

The JSON-RPC version (2.0)

Available options:
2.0
result
object
required
id
integer

The id that was sent in the request