Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.goldsky.com/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

Don’t want an account? Pay per request with x402 nanopayments — fund a Circle Gateway USDC balance once and call Edge directly with no API key.
1

Get your endpoint

Edge RPC 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, or hit edge.goldsky.com directly for a programmatic JSON list of every chain (id, alias, block time, health status).
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.