Blockdaemon · Example Payload

Blockdaemon Getbalances Example

BlockchainWeb3StakingValidatorsCustodyMPCWalletsNodesRPCDeFiIndexerTokenizationInstitutionalCrypto

Blockdaemon Getbalances Example is an example object payload from Blockdaemon, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

blockdaemon-getbalances-example.json Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://svc.blockdaemon.com/v1/ethereum/mainnet/account/0xab5801a7d398351b8be11c439e05c5b3259aec9b",
    "headers": {
      "X-API-Key": "${BLOCKDAEMON_API_KEY}"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "currency": {
          "asset_path": "ethereum/native/eth",
          "symbol": "ETH",
          "name": "Ether",
          "decimals": 18,
          "type": "native"
        },
        "confirmed_balance": "12345678900000000000",
        "pending_balance": "0",
        "confirmed_block": 21500000,
        "confirmed_nonce": 42
      }
    ]
  }
}