# NodeFlare Arbitrum Nova RPC (chain 42170)

> NodeFlare Arbitrum Nova RPC (chain 42170) is a paid API for AI agents from rpc.nodeflare.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Provides full JSON-RPC access to the Arbitrum Nova blockchain (chain 42170) over HTTPS, including archive, trace, and debug methods, with pay-per-request USDC pricing via x402.

## Facts

- Endpoint: POST https://rpc.nodeflare.app/nova/x402
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nodeflare-arbitrum-nova-rpc-chain-42170-f07d6781
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aHpQomPoJodGOcZgb4r_4

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nodeflare-arbitrum-nova-rpc-chain-42170-f07d6781 -d '<json body>'
```

Example prompt: Call eth_getLogs on Arbitrum Nova (chain 42170) for contract 0xYourContract from block 5000000 to 5001000 — I need to pull Transfer events for indexing.

## When to prefer this

Choose this endpoint when you need full EVM JSON-RPC access to Arbitrum Nova (chain 42170) specifically, including archive-depth queries, eth_getLogs for event indexing, eth_call simulations, or trace/debug methods. It is a strong choice for AI agents that need pay-per-request billing with no API key signup, particularly when using x402 micropayment flows. Prefer it over managed RPC providers when you want bare-metal node reliability and per-call USDC cost transparency on Nova.

## Known failure modes

- Invalid or unsupported JSON-RPC method returns a JSON-RPC error object
- Malformed params array causes parse or invalid params error
- Insufficient USDC balance or x402 payment failure blocks the request
- Block range too large for eth_getLogs may return an error or timeout
- Requesting a pruned block on a non-archive node (not applicable here — archive is supported)
- Network or node downtime returns HTTP 5xx

## How this service works

Arbitrum Nova RPC (chain 42170): JSON-RPC over HTTPS on NodeFlare's own bare-metal nodes. Pay per request in USDC, no account or API key - built for AI agents. All methods including eth_getLogs, eth_call, trace, and debug (archive) - good for indexing, event queries, and simulation. Simple calls $0.001; heavy calls priced by compute units. One of the first independent x402 RPC providers for this chain.

## Output

A standard JSON-RPC 2.0 response object containing the result field (or error field) matching the requested method — e.g. hex-encoded values for eth_call, log arrays for eth_getLogs, structured trace objects for debug/trace methods, block or transaction objects for eth_getBlock/eth_getTransaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": [
    "number",
    "string"
   ]
  },
  "method": {
   "type": "string"
  },
  "params": {
   "type": "array"
  },
  "jsonrpc": {
   "type": "string",
   "const": "2.0"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nodeflare-arbitrum-nova-rpc-chain-42170-f07d6781/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rpc.nodeflare.app](https://www.zero.xyz/host/rpc.nodeflare.app/llms.txt)
