---
updatedAt: 2026-08-06T10:38:54.000Z
---

Fetch the complete documentation index at: https://developers.mineos.ai/llms.txt. Use this file to discover all available pages before exploring further.

# List enrolled devices.

One page of the devices enrolled for the authenticated tenant, newest-enrolled first, each with its
check-in fields, scan-scheduler slots, and derived reporting and tamper statuses.
            
<br>`reportingStatus` and `tamperStatus` are derived at read time rather than stored, so a
device that has gone silent or reported a tampered scan is visible without waiting for a writer.<br>Ordering is by enrollment date — note that this is not scan or check-in recency. An oversized
`pageSize` is clamped rather than rejected, and a tenant with no devices gets
`{ "total": 0, "items": [] }` rather than a 404.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "MineOS API",
    "version": "v1.0"
  },
  "servers": [
    {
      "url": "https://api.portal.saymine.com/",
      "description": "MineOS EU API Endpoint"
    },
    {
      "url": "https://api.us.portal.saymine.com/",
      "description": "MineOS US API Endpoint"
    }
  ],
  "paths": {
    "/api/aispm/v2/public/devices": {
      "get": {
        "tags": [
          "AISPM"
        ],
        "summary": "List enrolled devices.",
        "description": "One page of the devices enrolled for the authenticated tenant, newest-enrolled first, each with its\r\ncheck-in fields, scan-scheduler slots, and derived reporting and tamper statuses.\r\n            \r\n<br>`reportingStatus` and `tamperStatus` are derived at read time rather than stored, so a\r\ndevice that has gone silent or reported a tampered scan is visible without waiting for a writer.<br>Ordering is by enrollment date — note that this is not scan or check-in recency. An oversized\r\n`pageSize` is clamped rather than rejected, and a tenant with no devices gets\r\n`{ \"total\": 0, \"items\": [] }` rather than a 404.",
        "parameters": [
          {
            "name": "pageNumber",
            "in": "query",
            "description": "Zero-based page index. Defaults to the first page.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Rows per page. Defaults to 25 and is clamped to the maximum.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AispmDeviceStatusListResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AispmDeviceStatusListResponse": {
        "type": "object",
        "properties": {
          "total": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AispmDeviceStatusResponse"
            },
            "nullable": true
          }
        },
        "additionalProperties": false,
        "description": "One page of devices: `{ total, items }` — the same envelope the agents list uses."
      },
      "AispmDeviceStatusResponse": {
        "type": "object",
        "properties": {
          "deviceId": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "description": "The device's effective state (enum member name).",
            "nullable": true
          },
          "lastCheckInAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "reportingStatus": {
            "type": "string",
            "nullable": true
          },
          "lastBootstrapOutcome": {
            "type": "string",
            "nullable": true
          },
          "lastBootstrapRunAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "tamperStatus": {
            "type": "string",
            "description": "Derived tamper signal (enum member name): `Unknown｜Clean｜Tampered`.",
            "nullable": true
          },
          "schedulerSlot": {
            "type": "string",
            "description": "The scan slot the device confirms its scheduler is running (`HH:MM`), or `null`.",
            "nullable": true
          },
          "schedulerSlotPending": {
            "type": "string",
            "description": "The scan slot still waiting to reach the device (`HH:MM`, `unknown`, or `null`).",
            "nullable": true
          },
          "schedulerSlotPendingCycles": {
            "type": "integer",
            "description": "Scheduler fires the pending change has survived (`1` = in-flight, `>= 2` = drop signal, `null` = unknown/none).",
            "format": "int32",
            "nullable": true
          },
          "deviceIdSource": {
            "type": "string",
            "description": "Which OS input the device derived its `deviceId` from (enum member name), or `null`.",
            "nullable": true
          },
          "bootstrapVersion": {
            "type": "string",
            "description": "The bootstrap version the device reported executing (dotted numeric), or `null` = unknown.",
            "nullable": true
          },
          "osVersion": {
            "type": "string",
            "description": "The OS version the device reported, verbatim (open-shape, not semver). `null` = not yet reported.",
            "nullable": true
          },
          "osArch": {
            "type": "string",
            "description": "CPU architecture as reported (`arm64`, `x86_64`). `null` = not yet reported.",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "description": "One device's tenant-facing status row for the devices read surface."
      },
      "ProblemDetails": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "detail": {
            "type": "string",
            "nullable": true
          },
          "instance": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": {}
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "apiKey",
        "description": "Authorization header using the Bearer scheme. \r\n\r\nEnter 'Bearer' [space] and then your API Key in the text input below.\r\n\r\nExample: 'Bearer 12345abcdef'",
        "name": "Authorization",
        "in": "header"
      }
    }
  },
  "security": [
    {
      "Bearer": []
    }
  ]
}
```