---
updatedAt: 2026-05-20T16:41:43.000Z
---

Fetch the complete documentation index at: https://docs.blockdaemon.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Compute Units

> 📘 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 requested per page.

<HTMLBlock>{`
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>HTML Table</title>
  <style>
    .custom-table {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
    }

    .custom-table th, .custom-table td {
      padding: 8px;
      border: 1px solid #dddddd;
      text-align: left;
      word-wrap: break-word;
      max-width: 300px; /* Adjust maximum width as needed */
    }
  </style>
</head>
<body>

<table class="custom-table">
  <thead>
    <tr>
      <th>Name</th>
      <th>Path</th>
      <th>Value</th>
      <th>Type</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/getoverview-txapi" target="_blank">Get the Supported Protocol Info</a></td>
      <td><code>/tx/v1/{blockchain_id}</code></td>
      <td>1</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txcreate-txapi" target="_blank">Create an Unsigned Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/create</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txcreatetoken-txapi" target="_blank">Create an Unsigned Token Transfer Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/create/token</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txcompile-txapi" target="_blank">Compile an Unsigned Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/compile</code></td>
      <td>5</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txcompileandsend-txapi" target="_blank">Compile and Broadcast an Unsigned Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/compile_and_send</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txsend-txapi" target="_blank">Submit a Signed Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/send</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txverify-txapi" target="_blank">Verify a Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/verify</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txdecode-txapi" target="_blank">Decode a Transaction</a></td>
      <td><code>/tx/v1/{blockchain_id}/decode</code></td>
      <td>10</td>
      <td>Fixed</td>
    </tr>
    <tr>
      <td><a href="https://docs.blockdaemon.com/reference/txestimatefee-txapi" target="_blank">Get the Fee Estimation</a></td>
      <td><code>/tx/v1/{blockchain_id}/estimate_fee</code></td>
      <td>50</td>
      <td>Fixed</td>
    </tr>
  </tbody>
</table>
</body>
</html>
`}</HTMLBlock>

## 👋 Need Help?

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