Deribit · Schema

Transfer Item

DerivativesCryptocurrencyBitcoinEthereumOptionsFuturesPerpetualsTradingMarket DataBlock TradingWebSocketFinancial

Properties

Name Type Description
id object
created_timestamp object
type object
currency object
amount object
other_side object
state object
direction object
updated_timestamp object
nonce string Optional idempotency nonce if provided in the request
View JSON Schema on GitHub

JSON Schema

transfer_item.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deribit/json-schema/transfer_item.json",
  "title": "Transfer Item",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/transfer_id"
    },
    "created_timestamp": {
      "$ref": "#/components/schemas/timestamp"
    },
    "type": {
      "$ref": "#/components/schemas/transfer_type"
    },
    "currency": {
      "$ref": "#/components/schemas/currency"
    },
    "amount": {
      "$ref": "#/components/schemas/currency_amount"
    },
    "other_side": {
      "$ref": "#/components/schemas/transfer_other_side"
    },
    "state": {
      "$ref": "#/components/schemas/transfer_state"
    },
    "direction": {
      "$ref": "#/components/schemas/transfer_direction"
    },
    "updated_timestamp": {
      "$ref": "#/components/schemas/timestamp"
    },
    "nonce": {
      "type": "string",
      "description": "Optional idempotency nonce if provided in the request"
    }
  },
  "required": [
    "currency",
    "id",
    "type",
    "amount",
    "state",
    "other_side",
    "updated_timestamp",
    "created_timestamp"
  ],
  "type": "object"
}