Bitycle Business
English
  • English
  • Turkish
  1. Blockchain Indexer
Bitycle Business
English
  • English
  • Turkish
  • Getting started
  • Bitycle Widget
    • introduction
    • demo
    • widgets
      • Advance Chart
      • Full Chart
      • Overview Chart
      • Fear & Greed
      • Technical Analysis
      • Mini Chart
      • Trends
      • Compare
      • Treemap
      • Ticker
      • Digest(AI)
      • News
      • Info
  • Bitycle Lab
    • introduction
    • Wallet as a Service(WaaS)
      • Introduction
      • Request wallet (temporary)
      • Request wallet (permanent)
      • Callback new payment
      • Inquiry payment with trxRefId
      • Inquiry payment without trxRefId
      • withdraw service
      • Buy Energy on TRON Network
    • Blockchain Indexer
      • introduction
      • Blockchain List
        GET
      • Contract Info
        GET
      • Get Balances
        GET
    • Security&Privacy
      • introduction
      • Check Blocked Wallets
      • Add to watch list
      • Get watch list
      • Delete from watch list
      • Get address label
      • Get address information
    • Node as a Service(NaaS)
      • introduction
    • Tokenization
      • introduction
    • Decentralized Storage(IPFS)
      • introduction
    • Hyperledger Services
      • introduction
  • Bitycle Cap
    • introduction
    • Coins
      • introduction
      • Coin List
      • Coin Info
      • Coin Price
      • coin exchange listings
    • Markets
      • introduction
      • Market Price
      • Markets Price
      • Markets List
      • Market Info
      • market sparklines
    • exchanges
      • introduction
      • CEX Aggregator(Buy&Sell)
        • introduction
        • get tradable markets
        • get tradable markets price
        • send otc order
        • get orders
        • get balances
      • Exchanges List
      • Exchange Info
      • Exchange Coins Listing
      • Exchange Markets Listing
  1. Blockchain Indexer

Get Balances

GET
/api/bc/balances
Fetching token balances of different addresses on a blockchain network.
To fetch the balance of the network’s native coin, use this address:
0x0000000000000000000000000000000000000000

Request

Header Params

Body Params application/json

Examples

Responses

🟢200success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://chainhub.bitycle.com/api/bc/balances' \
--header 'Authorization: Token xxx' \
--header 'Content-Type: application/json' \
--data-raw '{
  "network": "eth",
  "pairs": [
    {
      "contract": "0x0000000000000000000000000000000000000000",
      "wallet": "0x0b423fc9005e4b9198d309d96c9eaef1b1319b39"
    },
    {
      "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7",
      "wallet": "0x0b423fc9005e4b9198d309d96c9eaef1b1319b39"
    }
  ]
}'
Response Response Example
{
    "code": 0,
    "message": "",
    "data": [
        {
            "wallet": "0x0B423Fc9005e4B9198d309d96c9eaef1b1319B39",
            "contract": "0x0000000000000000000000000000000000000000",
            "balance": 0.012338659946268718
        },
        {
            "wallet": "0x0B423Fc9005e4B9198d309d96c9eaef1b1319B39",
            "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
            "balance": 0
        }
    ]
}
Modified at 2025-09-19 11:55:53
Previous
Contract Info
Next
introduction
Built with