Quick Start
Prerequisites
Endpoint format
https://rpc.flamewire.io/{chain}Keep the key out of source control
# .bashrc or terminal
export FLAMEWIRE_KEY=PASTE_YOUR_KEY_HERE # keeps it out of git :contentReference[oaicite:2]{index=2}Example 1 · Latest Ethereum block (cURL)
curl -X POST https://rpc.flamewire.io/ethereum \
-H "Content-Type: application/json" \
-H "X-API-Key: $FLAMEWIRE_KEY" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Example 2 · JavaScript (Fetch)
Example 3 · Python (web3.py)
Example 4 · Query Sui checkpoint (cURL)
Checking your credit balance
Last updated