# Script Master Labs — Ethereum RPC via x402

> Script Master Labs — Ethereum RPC via x402 is a paid API for AI agents from mcp-x402.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Provides pay-per-call Ethereum JSON-RPC method execution, settled in USDC on Base via x402 micropayments.

## Facts

- Endpoint: GET https://mcp-x402.onrender.com/x402/eth-rpc
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/script-master-labs-ethereum-rpc-via-x402-c870c1dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tOEQTe4xdGI69AVWioUDO

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 script-master-labs-ethereum-rpc-via-x402-c870c1dc
```

Example prompt: Can you call the eth_getBalance RPC method for wallet address 0xABC...123 on Ethereum and tell me the current balance?

## When to prefer this

Choose this endpoint when you need pay-per-call Ethereum RPC access without a subscription, especially when your agent stack supports x402 micropayment settlement in USDC on Base. Ideal for low-frequency on-chain lookups where a full node subscription is overkill.

## Known failure modes

- Invalid or unsupported RPC method name returns an error response
- Malformed address or hash parameter causes a bad request error
- Payment not settled in USDC on Base results in 402 Payment Required
- Block or transaction not found returns null or empty result
- Network timeout or node unavailability causes a service error

## How this service works

Pay-per-call crypto, RWA, federal, SEC, Section 8/HUD housing, and compliance APIs via x402. Primary: USDC on Base (eip155:8453). Also accepts Global Dollar (USDG) on Robinhood Chain (eip155:4663) via sovereign X-PAYMENT-TX. Hyphen routes only (e.g. /x402/gas-tracker, /x402/pha-lookup, /x402/sec-8k). MARKETPLACE REVIEW: use free /x402/playground/* (no key, no payment). Production /x402/* returns 402 unless paid via x402 or X-Api-Market-Key / X-API-Key from seller dashboard.

## Output

Returns the raw JSON-RPC response from the Ethereum node for the requested method, including fields such as balance, transaction details, block metadata, or contract return values depending on the method called.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "hash": {
       "type": "string"
      },
      "block": {
       "type": "string"
      },
      "method": {
       "type": "string"
      },
      "address": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/script-master-labs-ethereum-rpc-via-x402-c870c1dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402.onrender.com](https://www.zero.xyz/host/mcp-x402.onrender.com/llms.txt)
