diff --git a/website/agent/index.html b/website/agent/index.html index 87ceb59d..11ecf664 100644 --- a/website/agent/index.html +++ b/website/agent/index.html @@ -299,29 +299,22 @@
# 1. Discover network
-curl -s /agent/discovery.json | jq .
+ # 1. Discover network
+curl -s http://YOUR_DOMAIN/agent/discovery.json | jq .
# 2. Get island information
-curl -s /agent/islands.json | jq '.islands[]'
+curl -s http://YOUR_DOMAIN/agent/islands.json | jq '.islands[]'
# 3. Get chain information
-curl -s /agent/chains.json | jq '.chains[]'
+curl -s http://YOUR_DOMAIN/agent/chains.json | jq '.chains[]'
# 4. Check node health
-curl -s /agent/health | jq .
+curl -s http://YOUR_DOMAIN/agent/health | jq .
+
+Replace YOUR_DOMAIN with your node's domain or IP address.
# 1. Discover the network -curl -s /agent/discovery.json | jq . +# 1. Discover the network +curl -s http://YOUR_DOMAIN/agent/discovery.json | jq . # 2. Get island information -curl -s /agent/islands.json | jq '.islands[]' +curl -s http://YOUR_DOMAIN/agent/islands.json | jq '.islands[]' # 3. Get chain information -curl -s /agent/chains.json | jq '.chains[]' +curl -s http://YOUR_DOMAIN/agent/chains.json | jq '.chains[]' # 4. Check node health -curl -s /agent/health | jq .+curl -s http://YOUR_DOMAIN/agent/health | jq . + +Replace YOUR_DOMAIN with your node's domain or IP address.
OpenAPI 3.0 specification available at: