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 @@

Quick Start for Agents

- # 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.
- -

Key Configuration Values

diff --git a/website/index.html b/website/index.html index 513f4a7e..baeb0262 100644 --- a/website/index.html +++ b/website/index.html @@ -252,29 +252,22 @@

Quick Start

-
# 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.
- -

API Specification

OpenAPI 3.0 specification available at: