> ## Documentation Index
> Fetch the complete documentation index at: https://hedera-0c6e0218-docs-evm-account-model.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuring Validation Cloud RPC endpoints

[Validation Cloud](https://www.validationcloud.io/node)
is a third-party organization that runs a JSON-RPC and Mirror Node managed service for Hedera as well as other
popular blockchain networks. It is a "freemium" offering, meaning it has a free tier and a paid offering. As a
managed service, it:

* Is free to use up to a point, with a free usage allowance that resets every month
* Does not require a credit card to sign up, only an email address
* Does not apply specific rate limits and can scale to be used by high volume apps

This combination makes it fairly straightforward to use and more reliable than the public RPC endpoint.

To connect to Hedera networks via Validation Cloud, simply use this URL when initializing the wallet or web3
provider instance:

<CodeGroup>
  ```text Mainnet theme={null}
  https://mainnet.hedera.validationcloud.io/v1/<YOUR_API_KEY>
  ```

  ```text Testnet theme={null}
  https://testnet.hedera.validationcloud.io/v1/<YOUR_API_KEY>
  ```
</CodeGroup>

The corresponding chain IDs are:

| Network     | Chain ID (decimal) | Chain ID (hex) |
| ----------- | :----------------: | :------------: |
| **Mainnet** |        `295`       |     `0x127`    |
| **Testnet** |        `296`       |     `0x128`    |

<Info>
  **Note:** Validation Cloud provides RPC endpoints for Hedera Mainnet and Hedera Testnet but not for Hedera Previewnet.
</Info>

You will need to replace `<YOUR_API_KEY>`
with a Validation Cloud API Endpoint Key, and that requires the following prerequisite steps:

* (1) Sign up for an account at [`app.validationcloud.io/api/auth/signup`](https://app.validationcloud.io/api/auth/signup)
* (2) Accept the terms of use and then verify your email address
* (3) Click the "Create endpoint" button at the top of the Validation Cloud Node API dashboard:

<Frame>
  <img src="https://mintcdn.com/hedera-0c6e0218-docs-evm-account-model/v2qJqC8wcTvu9DhL/images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-1.png?fit=max&auto=format&n=v2qJqC8wcTvu9DhL&q=85&s=d04850f5862e9a42195b761fb779dfa8" width="1094" height="224" data-path="images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-1.png" />
</Frame>

* (4) Fill in a name for the endpoint, select Hedera and pick whether you want Testnet or Mainnet, then click
  on the "Confirm" button:

<Frame>
  <img src="https://mintcdn.com/hedera-0c6e0218-docs-evm-account-model/v2qJqC8wcTvu9DhL/images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-2.png?fit=max&auto=format&n=v2qJqC8wcTvu9DhL&q=85&s=624356ce0c22810ac960b12e3417a35c" width="1321" height="1064" data-path="images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-2.png" />
</Frame>

* (5) Your key should now be created and you can click the copy to clipboard icon to use it to make requests:

<Frame>
  <img src="https://mintcdn.com/hedera-0c6e0218-docs-evm-account-model/v2qJqC8wcTvu9DhL/images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-3.png?fit=max&auto=format&n=v2qJqC8wcTvu9DhL&q=85&s=ce9648924a4de3852e89f20c8e5316ea" width="774" height="396" data-path="images/tutorials/more-tutorials/json-rpc-connections/json-rpc-connections-3.png" />
</Frame>

Now you're ready to connect to an RPC endpoint or query a Mirror Node via Validation Cloud!

## Additional resources

* [Validation Cloud documentation](https://docs.validationcloud.io/v1)
* [Hedera JSON-RPC Relay API reference](https://docs.validationcloud.io/v1/hedera/json-rpc-relay-api)
* [Hedera REST Mirror Node API reference](https://docs.validationcloud.io/v1/hedera/rest-mirror-node-api)
* [Validation Cloud Node API dashboard](https://app.validationcloud.io/)

***

<Columns cols={2}>
  <Card title="Editor: Krystal, Senior DX Engineer">
    [GitHub](https://github.com/theekrystallee) | [X](https://X.com/theekrystallee) | [LinkedIn](https://linkedin.com/in/theekrystallee)
  </Card>

  <Card title="Editor: Logan, Senior Software EngineerI" arrow>
    [GitHub](https://github.com/quiet-node) | [LinkedIn](https://www.linkedin.com/in/logann131/)
  </Card>
</Columns>
