Skip to main content

Prerequisites

1

Get your endpoint

RPC Edge endpoints follow a simple URL format:
https://edge.goldsky.com/standard/evm/{chainId}?secret=YOUR_SECRET
Replace {chainId} with the chain ID (e.g., 1 for Ethereum, 42161 for Arbitrum, 8453 for Base) and YOUR_SECRET with your API secret from the dashboard.
See the full list of supported networks.
2

Make your first request

curl https://edge.goldsky.com/standard/evm/1?secret=YOUR_SECRET \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_blockNumber",
    "params": [],
    "id": 1
  }'
Response:
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x134a1b0"
}

Getting help

Can’t find what you’re looking for? Reach out to us at support@goldsky.com for help.