Blockchain.com · Schema

DepositAddress

A newly generated deposit address.

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
currency string
address string
View JSON Schema on GitHub

JSON Schema

exchange-deposit-address-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-deposit-address-schema.json",
  "title": "DepositAddress",
  "description": "A newly generated deposit address.",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "example": "BTC"
    },
    "address": {
      "type": "string",
      "example": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
    }
  }
}