Admin - Services

Get services health status

Returns a list of all services with their health status, name, and installation status. Optionally filter by server ID.

get/api/services

Query parameters

server_idinteger

Optional server ID to filter services. If not provided or 0, returns localhost services.

Response

Successful operation

Example response

{
  "data": [
    {
      "name": "BoltAgent",
      "status": "running",
      "installed": "installed",
      "category": "Bolt"
    }
  ]
}

Changes