Get all daemons
Returns all daemons accessible to the user.
Supports pagination via limit and offset query parameters,
and ordering via group_by, order_by, and order_direction.
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Query Parameters
Filter by network ID
Primary ordering field (used for grouping). Always sorts ASC to keep groups together.
Secondary ordering field (sorting within groups or standalone sort).
Direction for order_by field (group_by always uses ASC).
Maximum number of results to return (1-1000, default: 50). Use 0 for no limit.
Number of results to skip. Default: 0.
Response Body
application/json
curl -X GET "https://example.com/api/v1/daemons"{
"data": [
{
"host_id": "eb4e20fc-2b4a-4d0c-811f-48abcf12b89b",
"mode": "server_poll",
"name": "string",
"network_id": "d6797cf4-42b9-4cad-8591-9dd91c3f0fc3",
"tags": [
"a424dc99-d215-4281-ad2d-a3a9bc179925"
],
"url": "https://daemon.example.com:60073",
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"api_key_id": "b0dd218e-3bcf-4bdb-a1e3-0689d60a8afd",
"is_unreachable": true,
"last_seen": "2019-08-24T14:15:22Z",
"standby": true,
"standby_cleared_at": "2019-08-24T14:15:22Z",
"version": "0.17.7",
"created_at": "2019-08-24T14:15:22Z",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"interfaced_subnet_ids": [
"c160b63e-4109-4659-9169-fdbff6fc96f8"
],
"updated_at": "2019-08-24T14:15:22Z",
"version_status": {
"status": "Current",
"has_correct_docker_volume_mount": true,
"sunset_date": "string",
"supports_targeted_rescan": true,
"supports_unified_discovery": true,
"version": "string",
"warnings": [
{
"message": "string",
"severity": "Info",
"sunset_date": "string"
}
]
}
}
],
"meta": {
"api_version": 1,
"pagination": {
"has_more": true,
"limit": 50,
"offset": 0,
"total_count": 142
},
"server_version": "0.17.14"
},
"success": true,
"error": "string"
}Generate daemon install command
A pure, idempotent builder — it never mints or persists anything. The api key in an `install` command is a placeholder (`<API_KEY>`) the caller substitutes from the plaintext it holds; a `reconfigure` command carries no key at all. Minting is a separate mutation (`POST /provision`), so regenerating a command here (advanced-setting change, OS switch, the Details reconfigure view) never rotates the daemon's key. The server derives the exact command shape from the record: DaemonPoll vs ServerPoll for the flags, and — for `install` — whether the daemon has checked in (`last_seen`) to decide between a first-install and a minimal re-key command.
Download the Windows daemon MSI
Proxies the Windows daemon MSI from GitHub so the browser can save it under a caller-chosen filename. Cached for an hour to avoid refetching from GitHub on every request.