Skip to main content
GET
/
api
/
admin
/
nodes
curl -X GET "https://panel.example.com/api/admin/nodes" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
{
  "data": [
    {
      "id": "node-uuid-1",
      "name": "US-East-1"
    },
    {
      "id": "node-uuid-2",
      "name": "EU-West-1"
    },
    {
      "id": "node-uuid-3",
      "name": "AP-Southeast-1"
    }
  ]
}

Authentication

This endpoint requires admin authentication.

Response

data
array
Array of node objects
curl -X GET "https://panel.example.com/api/admin/nodes" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
{
  "data": [
    {
      "id": "node-uuid-1",
      "name": "US-East-1"
    },
    {
      "id": "node-uuid-2",
      "name": "EU-West-1"
    },
    {
      "id": "node-uuid-3",
      "name": "AP-Southeast-1"
    }
  ]
}

Notes

  • This is a simplified endpoint that returns only node IDs and names
  • Results are ordered alphabetically by node name
  • For detailed node information, use the Wings-specific node endpoints

Build docs developers (and LLMs) love