Blockchain.com · JSON Structure

Exchange Account Structure

Balance for a single account/currency.

Type: object Properties: 9
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

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

Properties

primary name currency balance available balance_local available_local rate type

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-account-structure.json",
  "name": "Account",
  "description": "Balance for a single account/currency.",
  "type": "object",
  "properties": {
    "primary": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "example": "My Entry"
    },
    "currency": {
      "type": "string",
      "example": "BTC"
    },
    "balance": {
      "type": "double"
    },
    "available": {
      "type": "double"
    },
    "balance_local": {
      "type": "double"
    },
    "available_local": {
      "type": "double"
    },
    "rate": {
      "type": "double",
      "example": 72525.0
    },
    "type": {
      "type": "string"
    }
  }
}