| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

> 💡
>
> ### **Compute Unit Value**: `50` (fixed)   [Skip link to compute unit value documentation](https://docs.blockdaemon.com/reference/getlistofbalancesbyaddresses#compute-unit-value-50-fixed)

* * *

> 🚧
>
> ### Truncation Info   [Skip link to Truncation Info](https://docs.blockdaemon.com/reference/getlistofbalancesbyaddresses#truncation-info)
>
> For responses that have big numbers (such as in transfer amounts from blockchain transactions), truncation might be applied from Javascript’s native JSON parser.
>
> To avoid this behavior, we recommend using a library such as [`json-bigint`](https://github.com/sidorares/json-bigint) or [`lossless-json`](https://github.com/josdejong/lossless-json)

* * *

## Supported Protocols & Networks

| Protocol | Network | Path Parameters |
| --- | --- | --- |
| Algorand | Mainnet | `algorand/mainnet` |
| Avalanche | Mainnet-c | `avalanche/mainnet-c` |
| Testnet-c | `avalanche/testnet-c` |
| Bitcoin | Mainnet | `bitcoin/mainnet` |
| Testnet | `bitcoin/testnet` |
| Testnet4 | `bitcoin/testnet4` |
| Bitcoincash | Mainnet | `bitcoincash/mainnet` |
| Testnet | `bitcoincash/testnet` |
| Dogecoin | Mainnet | `dogecoin/mainnet` |
| Testnet | `dogecoin/testnet` |
| Ethereum | Mainnet | `ethereum/mainnet` |
| Sepolia | `ethereum/sepolia` |
| Hoodi | `ethereum/hoodi` |
| Litecoin | Mainnet | `litecoin/mainnet` |
| Testnet | `litecoin/testnet` |
| Near | Mainnet | `near/mainnet` |
| Optimism | Mainnet | `optimism/mainnet` |
| Polkadot | Mainnet | `polkadot/mainnet` |
| Westend | `polkadot/westend` |
| Polygon | Mainnet | `polygon/mainnet` |
| Amoy | `polygon/amoy` |
| Solana | Mainnet | `solana/mainnet` |
| Testnet | `solana/testnet` |
| Devnet | `solana/devnet` |
| Stellar | Mainnet | `stellar/mainnet` |
| Testnet | `stellar/testnet` |
| Tron | Mainnet | `tron/mainnet` |
| Nile | `tron/nile` |
| XRP | Mainnet | `xrp/mainnet` |
| Testnet | `xrp/testnet` |

### Request Example in Various Languages

**Shell**

```shell
xxxxxxxxxx

curl --request POST \
 \
     --url https://svc.blockdaemon.com/universal/v1/bitcoin/mainnet/accounts/ \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "addresses": [\
    "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",\
    "bc1qex0aqq8mxqfh4cpl62eg755836djjx20yzuuu8"\
  ]
}
'
```

### Responses

```json
"200"  // Balances
"400"  // Bad request
"401"  // Invalid or expired token
"404"  // Not Found
"429"  // Rate limit exceeded
"500"  // An internal server error happened
"503"  // The resource you are trying to access is currently unavailable
```
