curl --request POST \
--url https://api.hyperliquid.xyz/info \
--header 'Content-Type: application/json' \
--data '{
"type": "gossipRootIps"
}'
[
"<string>"
]
curl --request POST \
--url https://api.hyperliquid.xyz/info \
--header 'Content-Type: application/json' \
--data '{
"type": "gossipRootIps"
}'
[
"<string>"
]
info
endpoint with type: "gossipRootIps"
retrieves a list of recently available seed peer IP addresses for non-validators looking to connect to the Hyperliquid network. This endpoint provides reliable peer addresses that can be used as seed peers for node synchronization and network connectivity.
type
(string, required) — The request type. Must be "gossipRootIps"
to retrieve the list of seed peer IP addresses.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "gossipRootIps"}' \
https://api.hyperliquid.xyz/info
[
"54.199.122.133",
"116.199.229.233",
"54.168.150.28",
"35.190.230.32",
"13.230.48.38",
"218.33.8.227",
"35.72.88.240",
"45.76.206.35",
"54.65.106.241",
"18.180.228.50",
"35.79.116.97",
"13.158.102.147",
"52.198.152.3",
"43.207.77.116",
"57.181.193.239",
"52.193.108.65",
"54.64.2.87"
]
info
endpoint with type: "gossipRootIps"
is particularly useful for:
Successful response
The response is of type string[]
.