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":[]}'
blocks
eth_getTransactionReceipt
KEY REQUIREDGet transaction receipt
Returns the receipt of a mined transaction — status, gas used, and emitted logs.
POST
https://arbsepolia.rpc.service.pinax.network/v1/<API_KEY>/
Supported networks (30)
Required parameters
| Name | Type | Description |
|---|---|---|
txHashrequired | hash | 32-byte transaction hash. e.g. 0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b |
Request body
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_getTransactionReceipt"
}Response
200 OKReceipt object or null if pending.
{ "jsonrpc": "2.0", "id": 1, "result": { "transactionHash": "0x88df01...", "blockNumber": "0x14a2bff", "status": "0x1", "gasUsed": "0x5208", "effectiveGasPrice": "0x3b9aca00", "logs": [] } }