> ## 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.

# Hedera Mirror Node

The Hedera Consensus Service (HCS) is a gRPC API endpoint on the mirror node to stream HCS messages. It offers the ability to subscribe to HCS topics and receive messages for the topic subscribed to. API docs for the mirror nodes can be found here:

<Card title="Mirror Node REST API" href="/reference/rest-api" />

<Card title="Hedera Consensus Service gRPC API" href="/reference/hcs-api" />

## Mainnet

The non-production public mainnet mirror node serves to help developers build their applications without having to run their own mirror node. For production-ready mainnet mirror nodes, please check out [Validation Cloud](https://www.validationcloud.io/), [Arkhia](https://www.arkhia.io/), [Dragonglass](https://dragonglass.me/), or [Hgraph](https://hgraph.com). When building your Hedera client via [SDK](/native/fundamentals), you can use `setMirrorNetwork()` and enter the public mainnet mirror node endpoint. The gRPC API requires TLS. The following SDK versions support TLS:

* **Java:** v2.0.6+
* **JavaScript:** v2.0.23+
* **Go:** v2.1.9+

<Warning>
  Public mainnet mirror node requests per second (RPS) are currently throttled at **50 per IP address**. These configurations may change in the future depending on performance or security considerations. At this time, no authentication is required.
</Warning>

<CodeGroup>
  ```java Java theme={null}
  //You will need to upgrade to v2.0.6 or higher
  Client client = Client.forMainnet();
  client.setMirrorNetwork(Collections.singletonList("mainnet.mirrornode.hedera.com:443"))
  ```

  ```javascript javascript theme={null}
  //You will need to upgrade to v2.0.23 or higher
  const client = Client.forMainnet()
  client.setMirrorNetwork("mainnet.mirrornode.hedera.com:443")
  ```

  ```go Go theme={null}
  client := hedera.ClientForMainnet()
  client.SetMirrorNetwork([]string{"mainnet.mirrornode.hedera.com:443"})
  ```
</CodeGroup>

<Info>
  **Mainnet Mirror Node Endpoint:** mainnet.mirrornode.hedera.com:443

  **REST API Mainnet Root Endpoint:**[ https://mainnet.mirrornode.hedera.com](https://mainnet.mirrornode.hedera.com)
</Info>

## Testnet

The endpoints provided below allow developers to access the testnet mirror node, which contains testnet transaction data.

<Info>
  **HCS Testnet Mirror Node Endpoint:** testnet.mirrornode.hedera.com:443

  **REST API Testnet Root Endpoint:**[ https://testnet.mirrornode.hedera.com](https://testnet.mirrornode.hedera.com)
</Info>

## Previewnet

The endpoints provided below allow developers to access the previewnet mirror node, which contains previewnet transaction data.

<Info>
  **HCS Previewnet Mirror Node Endpoint:** previewnet.mirrornode.hedera.com:443

  **REST API Preview Testnet Root Endpoint:** [https://previewnet.mirrornode.hedera.com](https://previewnet.mirrornode.hedera.com)
</Info>
