eth_chainId - Polygon

Polygon API - Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.

Parameters

none


Returns

QUANTITY - Integer of the current chain ID.


Example

Request

curl https://polygon-mainnet.unifra.io/v1/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":83}'
URL: https://polygon-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
    "jsonrpc":"2.0",
    "method":"eth_chainId",
    "params":[],
    "id":83
}

Result

{
	"jsonrpc": "2.0",
	"id": 83,
	"result": "0x89"
}
Language
Click Try It! to start a request and see the response here!