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.gnosisscan.io/api
   ?module=proxy
   &action=eth_blockNumber
   &apikey=YourApiKeyToken

No parameters required.

eth_getBlockByNumber

Returns information about a block by block number.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getBlockByNumber
   &tag=0x165b3e8
   &boolean=true
   &apikey=YourApiKeyToken

Query Parameters

eth_getUncleByBlockNumberAndIndex

Returns information about a uncle by block number.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getUncleByBlockNumberAndIndex
   &tag=0xC63276
   &index=0x0
   &apikey=YourApiKeyToken

Query Parameters

eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getBlockTransactionCountByNumber
   &tag=0x165b3e8
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByHash

Returns the information about a transaction requested by transaction hash.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getTransactionByHash
   &txhash=0xb76d2ba3313ebbfca1177846e791d91a3c7f675ba5c0cf8bb7ac2ad67403237c
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByBlockNumberAndIndex

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

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getTransactionByBlockNumberAndIndex
   &tag=0x165b3e8
   &index=0x0
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionCount

Returns the number of transactions performed by an address.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getTransactionCount
   &address=0x37DCB9A9C7e39BA3FdC3e57721aDb08Ed1302335
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_sendRawTransaction

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

https://api.gnosisscan.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.gnosisscan.io/api
   ?module=proxy
   &action=eth_getTransactionReceipt
   &txhash=0xed89dc622cac813b2f30d125b7f16faee2ed7780b455c08040cd2bdd1f8dd835
   &apikey=YourApiKeyToken

Query Parameters

eth_call

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

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_call
   &to=0x22d63a26c730d49e5eab461e4f5de1d8bdf89c92
   &data=0x095ea7b3000000000000000000000000f181ed90d6cfac84b8073fdea6d34aa744b41810ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_getCode

Returns code at a given address.

https://api.gnosisscan.io/api
   ?module=proxy
   &action=eth_getCode
   &address=0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2
   &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.gnosisscan.io/api
   ?module=proxy
   &action=eth_getStorageAt
   &address=0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2
   &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.gnosisscan.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.gnosisscan.io/api
   ?module=proxy
   &action=eth_estimateGas
   &data=0xac9650d8000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000014489a153cc0000000000000000000000000c0858290b6b268a93fb557af06390a3460c5db6000000000000000000000000e51c4a096d583688baa500350b46fa498b4c3f92000000000000000000000000420000000000000000000000000000000000000600000000000000000000000000000000000000000000000001cdda4faccd000000000000000000000000000000000000000000000000000001cdda4faccd0000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000355c11537122b00000000000000000000000000000000000000000000000000042a912f8d2dd800000000000000000000000000000000000000000000000000000000000153a200000000000000000000000000000000000000000000000000000000
   &to=0x22d63a26c730d49e5eab461e4f5de1d8bdf89c92
   &value=0x0
   &gasPrice=0x51da038cc
   &gas=0x5f5e0ff
   &apikey=YourApiKeyToken

Query Parameters

Last updated