Skip to main content
cURL
curl --request GET \
  --url https://test.deribit.com/api/v2/private/remove_from_address_book \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": 42,
  "method": "private/remove_from_address_book",
  "params": {
    "currency": "BTC",
    "type": "transfer",
    "address": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf0uyj"
  }
}
'
{
  "jsonrpc": "2.0",
  "id": 42,
  "result": "ok"
}

Query Parameters

currency
enum<string>
required

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

Available options:
BTC,
ETH,
STETH,
ETHW,
USDC,
USDT,
EURR,
SOL,
XRP,
USYC,
PAXG,
BNB,
USDE
type
enum<string>
required

Address book type

Available options:
transfer,
withdrawal,
deposit_source
address
string
required

Address in currency format, it must be in address book

Response

200 - application/json

Success response

jsonrpc
enum<string>
required

The JSON-RPC version (2.0)

Available options:
2.0
result
string
required

ok

Example:

"ok"

id
integer

The id that was sent in the request