Skip to main content

Balance API

API KEY

Access to the RPC data requires authentication. Head to the Developer Portal to get your API Key.

Use this endpoint to fetch the balance of a given address.

Base URL

https://chain.shib.io/api/v1/shibarium

Request example

  GET  /balance
curl -s "https://chain.shib.io/api/v1/puppynet/balance?address={{address}}&api_key={{api_key}}" \
-H "Content-Type: application/json" -X GET

Header Parameters

No header parameters needed.

Query Parameters

ParameterTypeDescriptionRequired
api_keystringYour API key provided by the Developer Portal.YES
addressstringThe wallet address from which you would like to fetch data.YES

Response

{
"items": [
{
"token": {
"address": "0xf010f12dcA0b96D2d6685bf4dB3dbB4Ad500B6Ad",
"circulating_market_cap": null,
"decimals": "6",
"exchange_rate": null,
"holders": "59",
"icon_url": null,
"name": "USD Coin",
"symbol": "USDC",
"total_supply": "18300718155",
"type": "ERC-20",
"volume_24h": null
},
"token_id": null,
"token_instance": null,
"value": "100000"
}
],
"next_page_params": null
}
KeyValue
itemsList of tokens.
tokenDescribes the specific token (e.g., USDC) held by the address.
addressThe contract address of the token.
circulating_market_capMarket capitalization of the circulating supply of the token (if available).
decimalsNumber of decimal places the token supports.
exchange_rateToken's exchange rate (if available).
holdersNumber of addresses holding the token.
icon_urlURL to the token's icon or logo.
nameThe token's full name.
symbolThe token's ticker symbol (e.g., USDC).
total_supplyThe total number of tokens in circulation.
typeThe token's standard (e.g., ERC-20 for fungible tokens).
volume_24hThe 24-hour trading volume of the token (if available).
token_idToken ID for NFTs or non-fungible tokens.
token_instanceInstance details for non-fungible tokens .
valueThe balance of the queried address in the specified token.
next_page_paramsIndicates pagination details if more token balances are available