Deribit · Schema

Privatedepositaddressresponse

DerivativesCryptocurrencyBitcoinEthereumOptionsFuturesPerpetualsTradingMarket DataBlock TradingWebSocketFinancial

Properties

Name Type Description
jsonrpc string The JSON-RPC version (2.0)
id integer The id that was sent in the request
result object Object if address is created, null otherwise
View JSON Schema on GitHub

JSON Schema

PrivateDepositAddressResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deribit/json-schema/PrivateDepositAddressResponse.json",
  "title": "Privatedepositaddressresponse",
  "properties": {
    "jsonrpc": {
      "type": "string",
      "enum": [
        "2.0"
      ],
      "description": "The JSON-RPC version (2.0)"
    },
    "id": {
      "type": "integer",
      "description": "The id that was sent in the request"
    },
    "result": {
      "type": "object",
      "properties": {
        "creation_timestamp": {
          "$ref": "#/components/schemas/timestamp"
        },
        "currency": {
          "$ref": "#/components/schemas/currency"
        },
        "address": {
          "$ref": "#/components/schemas/currency_address"
        },
        "type": {
          "$ref": "#/components/schemas/wallet_address_type"
        }
      },
      "required": [
        "creation_timestamp",
        "currency",
        "address",
        "type"
      ],
      "description": "Object if address is created, null otherwise"
    }
  },
  "required": [
    "jsonrpc",
    "result"
  ],
  "type": "object"
}