Printago API
GET /v1/ai-detection/alerts

List AI failure alerts

Requires: printer.view

Query Parameters

printerId optional
string
Only alerts for this printer.
printJobId optional
string
Only alerts for this print job.
limit optional
number
Max alerts to return; defaults to 20, capped at 100.

Response Schema

Response
value
object[]

Example Response

200 OK — application/json
[
  {
    "id": "string",
    "createdAt": "string",
    "message": "string",
    "frames": [
      {
        "capturedAt": 1,
        "offsetMs": 1
      }
    ]
  }
]