cURL
curl --request GET \ --url https://your-domain.com/api/client/v1/servers \ --header 'Authorization: Bearer <token>'
{ "servers": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "status": "running", "address": "<string>", "resources": { "cpu": 123, "memory_bytes": 123, "disk_bytes": 123, "uptime_ms": 123 } } ], "count": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Server list
Show child attributes