Quickstart
Pinax RPC endpoints are standard JSON-RPC 2.0 over HTTPS. Pick a network, embed your API key in the URL path, and POST a JSON-RPC body. Browse the full method catalog below or hit Try it on any method to send a live request.
No API key on this team yet — sample shows YOUR_API_KEY placeholder.
cURL
1curl 'https://arbsepolia.rpc.service.pinax.network/v1/YOUR_API_KEY/' \2 -H 'Content-Type: application/json' \3 -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'
send
eth_sendRawTransaction
KEY REQUIREDBroadcast signed transaction
Submits a pre-signed transaction to the network. Returns the transaction hash on acceptance.
POST
https://arbsepolia.rpc.service.pinax.network/v1/<API_KEY>/
Supported networks (30)
Required parameters
| Name | Type | Description |
|---|---|---|
signedTxrequired | hex | RLP-encoded signed transaction. e.g. 0x02f87401820123843b9aca00852e90edd000825208940000000000000000000000000000000000000000880de0b6b3a764000080c001a0... |
Request body
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendRawTransaction"
}Response
200 OKHex-encoded transaction hash.
{ "jsonrpc": "2.0", "id": 1, "result": "0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b" }