Geth Proxy

For the full documentation of available parameters and descriptions, please visit the official Ethereum JSON-RPC docs.

For compatibility with Parity, please prefix all hex strings with " 0x ".

eth_blockNumber

Returns the number of most recent block

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_blockNumber
   &apikey=YourApiKeyToken

No parameters required.

eth_getBlockByNumber

Returns information about a block by block number.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getBlockByNumber
   &tag=1BA637
   &boolean=true
   &apikey=YourApiKeyToken

Query Parameters

eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getBlockTransactionCountByNumber
   &tag=0x15795dd
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByHash

Returns the information about a transaction requested by transaction hash.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getTransactionByHash
   &txhash=0x621406db0f89280025405f6aa6a7f5c71f469693bb1f12d726da73af1bff6595
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByBlockNumberAndIndex

Returns information about a transaction by block number and transaction index position.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getTransactionByBlockNumberAndIndex
   &tag=0x15795dd
   &index=0x1
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionCount

Returns the number of transactions performed by an address.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getTransactionCount
   &address=0xa3a6F4f98197B2F5AE2382c2183906AD2d3A8522
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_sendRawTransaction

Submits a pre-signed transaction for broadcast to the Ethereum network.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_sendRawTransaction
   &hex=0xf904808000831cfde080
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionReceipt

Returns the receipt of a transaction by transaction hash.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getTransactionReceipt
   &txhash=0x0f97571c1a7629d5261e21300f023a1ba4c2ab3907aee576f1cfca992bf7b803
   &apikey=YourApiKeyToken

Query Parameters

eth_call

Executes a new message call immediately without creating a transaction on the block chain.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_call
   &to=0xd864a45334c7a632ca9149993682354d7f967f28
   &data=0x1decbf182aaab99124dfb65153cca5ac4c4948ca34201122d61beacf7fb5c2b521d951c0000000000000000000000000224e030f03cd3440d88bd78c9bf5ed36458a1a250000000000000000000000006475d267a691de86be94cebf798447c63f93d2e43718d90a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000203d9bad10dff8ce4fdee02cc1019467c313a8ce886951528e403f4f46e89edea40000000000000000000000000000000000000000000000000000000000000041145508138a5f5d113119a0bee5289991602011f5a528fa085de3b94db884a9ce658a48333826423f0ed7bbcc2ef13d2561f54dacea4b8fe52a34ed58f2256ab21b00000000000000000000000000000000000000000000000000000000000000
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_getCode

Returns code at a given address.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getCode
   &address=0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_getStorageAt

Returns the value from a storage position at a given address.

This endpoint is still experimental and may have potential issues

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_getStorageAt
   &address=0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73
   &position=0x0
   &tag=latest
   &apikey=YourApiKeyToken

Try this endpoint in your browser

Query Parameters

eth_gasPrice

Returns the current price per gas in wei.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_gasPrice
   &apikey=YourApiKeyToken

No parameters required.

eth_estimateGas

Makes a call or transaction, which won't be added to the blockchain and returns the used gas.

https://api-nova.arbiscan.io/api
   ?module=proxy
   &action=eth_estimateGas
   &data=0x
   &to=0x9295f4f98197b2f5ae2382c2183906ad2d3a7411
   &value=0xff22
   &gasPrice=6FC23AC00
   &gas=1C9C380
   &apikey=YourApiKeyToken

Query Parameters

Last updated