Blockchain.com · JSON Structure

Exchange Withdrawal Structure

A withdrawal record.

Type: object Properties: 7
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Withdrawal is a JSON Structure definition published by Blockchain.com, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

withdrawalId amount currency beneficiary state timestamp fee

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-structure/exchange-withdrawal-structure.json",
  "name": "Withdrawal",
  "description": "A withdrawal record.",
  "type": "object",
  "properties": {
    "withdrawalId": {
      "type": "string",
      "example": "21745988181"
    },
    "amount": {
      "type": "double"
    },
    "currency": {
      "type": "string",
      "example": "BTC"
    },
    "beneficiary": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "description": "Withdrawal state \u2014 `NONE`, `IN_PROGRESS`, `COMPLETE`, `REJECTED`.",
      "example": "open"
    },
    "timestamp": {
      "type": "int64",
      "example": 1748609400000
    },
    "fee": {
      "type": "double"
    }
  }
}