### Info

Available types calls are include:

- **Fixed**: A fixed query has a set CU cost.
- **Paginated**: A paginated query where you get billed based on the number of items returned per page.

### 1. Protocol and Endpoint Support

| Name | Path | Value | Type |
| --- | --- | --- | --- |
| [Get the Protocols Overview](https://docs.blockdaemon.com/reference/getprotocolslist) | `/v1/` | 1 | Fixed |
| [Get the Protocol Info](https://docs.blockdaemon.com/reference/getprotocolendpoints) | `/v1/{protocol}/{network}` | 1 | Fixed |

### 2. Fee Estimator

| Name | Path | Value | Type |
| --- | --- | --- | --- |
| [Get the Gas Fee Estimation](https://docs.blockdaemon.com/reference/getfeeestimate) | `/v1/{protocol}/{network}/tx/estimate_fee` | 50 | Fixed |

### 3. Balances & UTXO

| Name | Path | Value | Type |
| --- | --- | --- | --- |
| [Get a List of Balances for an Address](https://docs.blockdaemon.com/reference/getlistofbalancesbyaddress) | `/v1/{protocol}/{network}/account/{address}` | 10 | Fixed |
| [Get a List of Balances for Multiple Addresses](https://docs.blockdaemon.com/reference/getlistofbalancesbyaddresses) | `/v1/{protocol}/{network}/accounts` | 50 | Fixed |
| [Get a Financial Report for an Address between a Time Period](https://docs.blockdaemon.com/reference/getreportbyaddress) | `/v1/{protocol}/{network}/account/{address}/report` | 100 | Fixed |

### 4. Transactions

| Name | Path | Value | Type |
| --- | --- | --- | --- |
| [Get a List of Transaction Inputs and Outputs](https://docs.blockdaemon.com/reference/getutxobyaccount) | `/v1/{protocol}/{network}/account/{address}/utxo` | 10 | Paginated |
| [Get a List of Transactions for a Given Address](https://docs.blockdaemon.com/reference/gettxsbyaddress) | `/v1/{protocol}/{network}/account/{address}/txs` | 5 | Paginated |
| [Get the Transaction Confirmations](https://docs.blockdaemon.com/reference/gettxconfirmations) | `v1/{protocol}/{network}/tx/{hash}/confirmations` | 5 | Fixed |
| [Get a Transaction](https://docs.blockdaemon.com/reference/gettxbyhash) | `/v1/{protocol}/{network}/tx/{hash}` | 5 | Fixed |
| [Get a Transaction Output by Hash and Index](https://docs.blockdaemon.com/reference/gettxoutputbyhashandindex) | `/v1/{protocol}/{network}/tx/{hash}/{index}` | 10 | Fixed |
| [Get a List of Transactions](https://docs.blockdaemon.com/reference/gettxs) | `/v1/{protocol}/{network}/txs` | 5 | Paginated |

### 5. Blocks

| Name | Path | Value | Type |
| --- | --- | --- | --- |
| [Get the Current Block Number](https://docs.blockdaemon.com/reference/getcurrentblocknumber) | `/v1/{protocol}/{network}/sync/block_number` | 1 | Fixed |
| [Get the Current Block Hash](https://docs.blockdaemon.com/reference/getcurrentblockhash) | `/v1/{protocol}/{network}/sync/block_id` | 1 | Fixed |
| [Get a Block by Number or Hash](https://docs.blockdaemon.com/reference/getblockbynumber) | `/v1/{protocol}/{network}/block/{block_identifier}` | Determined by block size | Bytes |
| [Get a Block Identifier by Number or Hash](https://docs.blockdaemon.com/reference/getblockidentifierbynumber) | `/v1/{protocol}/{network}/block_identifier/{block_identifier}` | 5 | Fixed |
| [Get a List of Block Identifiers](https://docs.blockdaemon.com/reference/getblockidentifiers) | `/v1/{protocol}/{network}/block_identifiers` | 5 | Paginated |

### Need Help?

Contact us through [email](mailto:support@blockdaemon.com) or our [support page](/content/support/index.html) for any issues, bugs, or assistance you may need.

Updated 2 months ago
