Read-only JSON-RPC access to Ethereum mainnet, served by the Pocket Network decentralised
Read-only JSON-RPC access to Ethereum mainnet, served by the Pocket Network decentralised supplier set. Pay per request in USDC; no account, no API key.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
agent.pocket.network · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base-sepolia",
"payTo": "0xF732ea490c5766071785a2310523f7fA2CEbB829",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"method": {
"description": "JSON-RPC read method, e.g. eth_getBalance",
"examples": [
"eth_accounts",
"eth_blobBaseFee",
"eth_blockNumber",
"eth_call",
"eth_capabilities",
"eth_chainId",
"eth_coinbase",
"eth_config",
"eth_createAccessList",
"eth_estimateGas",
"eth_feeHistory",
"eth_gasPrice",
"eth_getBalance",
"eth_getBlockAccessList",
"eth_getBlockByHash",
"eth_getBlockByNumber",
"eth_getBlockReceipts",
"eth_getBlockTransactionCountByHash",
"eth_getBlockTransactionCountByNumber",
"eth_getCode",
"eth_getFilterChanges",
"eth_getFilterLogs",
"eth_getLogs",
"eth_getProof",
"eth_getStorageAt",
"eth_getStorageValues",
"eth_getTransactionByBlockHashAndIndex",
"eth_getTransactionByBlockNumberAndIndex",
"eth_getTransactionByHash",
"eth_getTransactionCount",
"eth_getTransactionReceipt",
"eth_getUncleByBlockHashAndIndex",
"eth_getUncleByBlockNumberAndIndex",
"eth_getUncleCountByBlockHash",
"eth_getUncleCountByBlockNumber",
"eth_maxPriorityFeePerGas",
"eth_newBlockFilter",
"eth_newFilter",
"eth_newPendingTransactionFilter",
"eth_simulateV1",
"eth_syncing",
"eth_uninstallFilter",
"net_listening",
"net_peerCount",
"net_version",
"web3_clientVersion",
"web3_sha3"
],
"type": "string"
},
"params": {
"description": "Parameters per the Ethereum JSON-RPC spec"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agent.pocket.network/v1/eth" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent.pocket.network/v1/eth");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agent.pocket.network/v1/eth")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13452.json, and this resource appears in /discovery/resources and /discovery/search.