RPC
Read-only JSON-RPC call against a supported blockchain.
Call it
The first response is 402 with the exact price and every rail you can
pay with. Pay, repeat the request with the proof, and you get the result.
curl -X POST https://api.glianalabs.com/v1/tools/rpc \
-H 'content-type: application/json' \
-d '{"chain":"base","method":"eth_blockNumber","params":[]}'When to use it
Use when an agent needs on-chain state — a block number, a balance, a contract read — without running its own node. Inputs: chain (required, e.g. base, ethereum, solana), method (required, e.g. eth_blockNumber), params (array, default []). Returns the RPC result verbatim. Reads only; nothing is signed or broadcast.
What it costs
$0.0020 per successful call — flat, with no plan, minimum or monthly fee. A call that fails validation is refused before it runs, so it is never charged.
Not sure this is the right endpoint? GET /v1/consult?intent=… is
free and answers that.