Network Configuration#
Flare Networks#
These are the values required to configure the different Flare networks:
![]() |
Flare |
---|---|
Chain ID | 14 |
Asset Ticker | FLR |
RPC endpoint BETA |
https://flare-api.flare.network/ext/C/rpc |
Rosetta API | https://flare-rosetta-api.flare.network/ |
Block Explorer | https://flare-explorer.flare.network |
Sample query
You can check that you are accessing the RPC endpoint correctly with this sample query:
curl -s -m 10 --request POST 'https://flare-api.flare.network/ext/C/rpc' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"method":"eth_blockNumber",
"params":[],
"id":1
}'
It should return the current chain height in a message similar to:
{"jsonrpc":"2.0","id":1,"result":"0x103384"}
![]() |
Songbird |
---|---|
Chain ID | 19 |
Asset Ticker | SGB |
RPC endpoint BETA |
https://songbird-api.flare.network/ext/C/rpc |
Block Explorer | https://songbird-explorer.flare.network |
Sample query
You can check that you are accessing the RPC endpoint correctly with this sample query:
curl -s -m 10 --request POST 'https://songbird-api.flare.network/ext/C/rpc' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"method":"eth_blockNumber",
"params":[],
"id":1
}'
It should return the current chain height in a message similar to:
{"jsonrpc":"2.0","id":1,"result":"0x103384"}
![]() |
Coston |
---|---|
Chain ID | 16 |
Asset Ticker | CFLR |
RPC endpoint BETA |
https://coston-api.flare.network/ext/C/rpc |
Block Explorer | https://coston-explorer.flare.network |
Test Faucet | https://faucet.towolabs.com |
Sample query
You can check that you are accessing the RPC endpoint correctly with this sample query:
curl -s -m 10 --request POST 'https://coston-api.flare.network/ext/C/rpc' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"method":"eth_blockNumber",
"params":[],
"id":1
}'
It should return the current chain height in a message similar to:
{"jsonrpc":"2.0","id":1,"result":"0x103384"}
![]() |
Coston2 |
---|---|
Chain ID | 114 |
Asset Ticker | C2FLR |
RPC endpoint BETA |
https://coston2-api.flare.network/ext/C/rpc |
Block Explorer | https://coston2-explorer.flare.network |
Test Faucet | https://coston2-faucet.towolabs.com |
Sample query
You can check that you are accessing the RPC endpoint correctly with this sample query:
curl -s -m 10 --request POST 'https://coston2-api.flare.network/ext/C/rpc' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"method":"eth_blockNumber",
"params":[],
"id":1
}'
It should return the current chain height in a message similar to:
{"jsonrpc":"2.0","id":1,"result":"0x103384"}
All public RPC endpoints are experimental and rate-limited to avoid spamming attacks. For a production-grade option check out Flare's API Portal
Connected Networks#
Along with the endpoints listed above to interact with its own networks, Flare offers public RPC nodes for a series of other blockchain networks, to bootstrap development of connected services like attestation providers.
All public RPC endpoints are experimental and rate-limited to avoid spamming attacks. For a production-grade option check out Flare's API Portal
RPC endpoint BETA |
https://bitcoin-api.flare.network |
Sample query
curl -s -X POST -m 10 -H "Content-type: application/json" \
-d '{"jsonrpc": "1.0", "id":"hc", "method": "getblockchaininfo", "params":[]}' \
-u public:d681co1pe2l3wcj9adrm2orlk0j5r5gr3wghgxt58tvge594co0k1ciljxq9glei \
https://bitcoin-api.flare.network | jq
RPC endpoint BETA |
https://bnb-bsc-api.flare.network/ |
Sample query
curl -s -X POST -m 10 -H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "id":67, "method":"eth_blockNumber", "params":[]}' \
https://bnb-bsc-api.flare.network | jq
RPC endpoint BETA |
https://litecoin-api.flare.network |
Sample query
curl -s -X POST -m 10 -H "Content-type: application/json" \
-d '{"jsonrpc": "1.0", "id":"hc", "method": "getblockchaininfo", "params":[]}' \
-u public:ntvzi4i1yne499t7vcdjqhhp92m3jvm0bb6dkpr406gkndvuns9sg6th3jd393uc \
https://litecoin-api.flare.network | jq
RPC endpoint BETA |
https://dogecoin-api.flare.network |
Sample query
curl -s -X POST -m 10 -H "Content-type: application/json" \
-d '{"jsonrpc": "1.0", "id":"hc", "method": "getblockchaininfo", "params":[]}' \
-u public:6r1e5z3w9g6qruvkzkqvz8w67yqrq5js2cmyl2f1cncbp7gpp7tqixqskuub5v70 \
https://dogecoin-api.flare.network | jq
RPC endpoint BETA |
https://xrpl-api.flare.network |
Sample query
curl -s -X POST -m 10 -H "Content-type: application/json" \
-d '{"method": "server_info", "params":[{"api_version": 1}]}' \
https://xrpl-api.flare.network | jq
RPC endpoint BETA |
https://algorand-api.flare.network |
Sample query
curl -s -m 10 \
-H "X-Algo-API-Token: zl748k3wddvld8cvn64utnslbf7otorkijp84se0f58pmuu0shgm27gttpcjpmuq" \
https://algorand-api.flare.network/v2/status | jq
RPC endpoint BETA |
https://ethereum-api.flare.network/ |
Sample query
curl -s -X POST -m 10 -H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "id":67, "method":"eth_blockNumber", "params":[]}' \
https://ethereum-api.flare.network | jq