> For the complete documentation index, see [llms.txt](https://chain-love.gitbook.io/chain-love-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chain-love.gitbook.io/chain-love-docs/blockchains/fuse.md).

# Fuse

<a href="https://fuse.chain.love/" class="button primary" data-icon="arrow-up-right">Open Toolbox</a> <a href="https://fuse.chain.love/configurations" class="button primary" data-icon="arrow-up-right">Open Performance</a> <a href="https://fuse.chain.love/rpc" class="button primary" data-icon="arrow-up-right">Open API Management (RPC & Subgraphs)</a>

{% hint style="info" %}
&#x20;<img src="https://img.shields.io/badge/Toolbox-Enabled-green" alt="" data-size="original"> <img src="https://img.shields.io/badge/Performance_module-Enabled-green" alt="" data-size="original"> <img src="https://img.shields.io/badge/RPC-FREE_ANONYMOUS-brightgreen" alt="" data-size="original"> <img src="https://img.shields.io/badge/Subgraphs-paid-gold" alt="" data-size="original">
{% endhint %}

Chain.Love on Fuse currently provides the **API Management** module for RPC access.

## Recommended workflows

* **Need an RPC endpoint right now**: open [API Management](https://fuse.chain.love/rpc) → use the RPC endpoint below.
* **Harden production access**: open [Performance](https://fuse.chain.love/configurations) → set monitoring/notifications → configure routing and failover.
* **Need an RPC/Subgraphs right now**: open [API Management](https://fuse.chain.love/rpc) → use RPC/Subgraphs endpoints (details below).

## Modules on Fuse

### Performance (Monitoring & routing)

* **What it is**: a module to manage providers' performance.
* **Key areas**:
  * [Monitoring](https://github.com/Chain-Love/chain.love-docs/blob/main/modules/performance/monitoring/getting-started.md)
  * [Notifications](https://github.com/Chain-Love/chain.love-docs/blob/main/modules/performance/monitoring/notifications.md)
  * [Load balancer](https://github.com/Chain-Love/chain.love-docs/blob/main/modules/performance/load-balancer/getting-started.md)
  * [Performance agreements](https://github.com/Chain-Love/chain.love-docs/blob/main/modules/performance/performance-agreements/getting-started.md)
* **Open**: `https://filecoin.chain.love/configurations`

### API Management (RPC & Subgraphs)

#### Sending requests

We host following JSON-RPC API endpoints for Fuse Mainnet:

* [Recent-state API](https://api.node.fuse.io/): Provides public anonymous access with 100 requests per second.
* [Recent-state API (Premium)](https://api.node.fuse.io/): Provides access to less "busy" and more stable fleet of nodes. Available on the Growth Plan.
* [Archival Node](https://fuse.chain.love/archive): This node provides access to the entire blockchain history, starting from genesis, as is. API is fully compatible with the [Ethereum JSON-RPC API](https://ethereum.org/en/developers/docs/apis/json-rpc/). Only **POST** endpoints are supported.
* Dedicated nodes are also available on-demand.

#### Subgraphs (Indexing)

Subgraphs can be [created](https://fuse.chain.love/graph) for $70/month on Fuse. You can query your subgraphs using the following methods:

* By **name**: `https://proxy.fuse.chain.love/subgraphs/name/<SUBGRAPH_NAME>`

{% tabs %}
{% tab title="Mainnet" %}

```bash
# Assuming the subgraph name is `polygon/hello`
curl -X POST \
 -H "Content-Type: application/json" \
 -d '{"query":"query MyQuery {\r\n  jobs(first: 10) {\r\n    id\r\n  }\r\n}","variables":{}}' \
 "https://proxy.fuse.chain.love/subgraphs/name/fuse/erc4337better"
```

{% endtab %}
{% endtabs %}
