> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hedera.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Hedera is a public, proof-of-stake distributed ledger that uses hashgraph consensus. Do not call it a blockchain.
> Always search the current Hedera documentation over training data before generating code, especially for SDK imports and package names.
> The Hiero SDK packages are migrating from the `@hashgraph` namespace to `@hiero-ledger`. Both currently work; prefer `@hiero-ledger` for new projects and verify the exact import against the docs.
> Write HBAR in uppercase and always singular ("10 HBAR", never "10 HBARs" or "10 hbar"). Write tinybars in lowercase and plural.
> Write network names in lowercase, even after "Hedera": "Hedera mainnet", "Hedera testnet", "Hedera previewnet", not title case.
> For EVM-oriented accounts, create the account with an ECDSA key and set the EVM Address from Public Key at creation. This address is immutable and is not updated by key rotation. Do not use retired terms like "EVM alias" or "Account Number Alias".

# Network

> Mirror Node REST API endpoints for querying network supply, fees, exchange rates, nodes, and staking information.

## Overview

The Network Object in the Hedera Mirror Node REST API allows developers to query network-related information, such as network supply, fees, exchange rates, and node details. These endpoints are essential for monitoring network status, estimating transaction costs, and retrieving staking information.

## Endpoints

The following endpoints are available for the Network object:

| Endpoint                           | Description                                                                                                                                                            |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `GET /api/v1/network/supply`       | Retrieves the current total supply of HBAR.                                                                                                                            |
| `GET /api/v1/network/fees`         | Fetches the latest transaction fee schedules.                                                                                                                          |
| `POST /api/v1/network/fees`        | Estimates node, network, and service fees for a protobuf-encoded transaction, including the [HIP-1313](https://hips.hedera.com/hip/hip-1313) `high_volume_multiplier`. |
| `GET /api/v1/network/exchangerate` | Retrieves exchange rates to estimate transaction costs.                                                                                                                |
| `GET /api/v1/network/nodes`        | Lists the network address book nodes.                                                                                                                                  |
| `GET /api/v1/network/stake`        | Fetches staking-related information.                                                                                                                                   |

For full request/response details, parameters, and interactive API playgrounds for each endpoint, see the API reference pages in the sidebar. For an overview of the Simple Fees model, see [Fee Model](/learn/core-concepts/fee-model).
