Blockchain.com · Schema

Withdrawal

A withdrawal record.

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
withdrawalId string
amount number
currency string
beneficiary string
state string Withdrawal state — `NONE`, `IN_PROGRESS`, `COMPLETE`, `REJECTED`.
timestamp integer
fee number
View JSON Schema on GitHub

JSON Schema

exchange-withdrawal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/exchange-withdrawal-schema.json",
  "title": "Withdrawal",
  "description": "A withdrawal record.",
  "type": "object",
  "properties": {
    "withdrawalId": {
      "type": "string",
      "example": "21745988181"
    },
    "amount": {
      "type": "number"
    },
    "currency": {
      "type": "string",
      "example": "BTC"
    },
    "beneficiary": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "description": "Withdrawal state \u2014 `NONE`, `IN_PROGRESS`, `COMPLETE`, `REJECTED`.",
      "example": "open"
    },
    "timestamp": {
      "type": "integer",
      "format": "int64",
      "example": 1748609400000
    },
    "fee": {
      "type": "number"
    }
  }
}