Forwards a JSON-RPC call to the named chain and returns its answer unchanged.
Forwards a JSON-RPC call to the named chain and returns its answer unchanged.
POST /v1/web3/rpc/{chain}
| Address | https://api.hanzo.ai/v1/web3/rpc/{chain} |
| Method | POST |
| Operation | post_web3_rpc_by_chain |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Forwards a JSON-RPC call to the named chain and returns its answer unchanged. Only declared chains are reachable, and only to a caller with a validated principal — this is the deployment's upstream, not an open relay.
Request
6 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
chain | path | string | yes | Chain is the registry id, from the URL. |
chain | body | string | — | Chain is the registry id, from the URL. |
id | body | any | — | ID is echoed back untouched. |
jsonrpc | body | string | — | JSONRPC must be "2.0" when present. |
method | body | string | — | Method is the RPC method, e.g. |
params | body | any | — | Params is the method's parameters, passed through unread. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | rpcOut | ok |
200 body — 6 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
error | body | rpcError | — | |
error.code | body | integer | — | Code is the JSON-RPC error code the chain reported, passed through as it came. |
error.message | body | string | — | Message is the chain's own explanation, e.g. "execution reverted". |
id | body | any | — | ID is the request's id, echoed back untouched — any JSON value, because JSON-RPC lets the caller choose. |
jsonrpc | body | string | — | JSONRPC is always "2.0". An upstream that omits it has it filled in, so a client never has to cope with a response that is missing the one field telling it… |
result | body | any | — | Result is the chain's answer, passed through unread: an eth_getBalance result is a 0x-quantity string, a block is an object. |
Failure carries the platform error shape — see Errors.
Examples
hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.
import { Configuration, Web3Api } from 'hanzoai';
const api = new Web3Api(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postWeb3RpcByChain({ chain: 'chain', chain: "<chain>", id: "<id>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import Web3Api
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = Web3Api(client).post_web3_rpc_by_chain(chain='chain', chain="<chain>", id="<id>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.Web3API.PostWeb3RpcByChain(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, web3_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = web3_api::post_web3_rpc_by_chain(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.Web3Api;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new Web3Api(client).postWeb3RpcByChain();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/web3/rpc/<chain> \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"chain": "<chain>",
"id": "<id>"
}'The door reaches web3 through the web3 tool, which names its 3 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_chains"
}
}
}'How is this guide?