Arbitrum
This section provides information specific to the Arbitrum blockchain.
Last updated
This section provides information specific to the Arbitrum blockchain.
Open Toolbox Open Performance Open API Management (RPC & Subgraphs)
Chain.Love on Arbitrum is a set of modules that help you discover providers, monitor them, and (optionally) access RPC/Subgraphs through an API gateway.
Discover providers (start here): open the Toolbox → browse categories (RPC, Indexing, Bridges, Oracles, Wallets, etc.) → shortlist and compare offers.
Harden production access: open Performance → set monitoring/notifications → configure routing and failover.
Need an RPC/Subgraphs right now: open API Management → use RPC/Subgraphs endpoints (details below).
What it is: a chain-specific marketplace/registry of Web3 services.
Key features:
Discover: browse categories and filter offers
Compare: side-by-side comparison
AI search: search across the database (including cross-ecosystem queries)
Widget for docs: embed a compact Toolbox view into documentation
Contributing: improve the open-source database
Open: https://arbitrum.chain.love/
What it is: a module to manage providers' performance.
Open: https://arbitrum.chain.love/configurations
This module is for accessing APIs (RPC/Subgraphs). If you’re evaluating providers or comparing options, start with the Toolbox section above.
We host one JSON-RPC API endpoint for Arbitrum Mainnet:
Archival Node: This node provides access to the entire blockchain history, starting from genesis, as is. You can learn more about its API here: RPC API. Only POST endpoints are supported.
You can query your subgraphs using the following methods:
By name: https://proxy.arbitrum.chain.love/subgraphs/name/<SUBGRAPH_NAME>
Last updated
# Assuming the subgraph name is `arbitrum/test`
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.arbitrum.chain.love/subgraphs/name/arbitrum/test"