get/api/v2/monitors/{id}/runs/{runId}
Get one persisted monitor run with lifecycle events.
Get one persisted monitor run with lifecycle events.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| id | path / required | No description provided.string |
| runId | path / required | No description provided.string |
Responses
200
application/jsonSuccessful JSON response.
{
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"queued",
"running",
"completed",
"failed"
]
},
"startedAt": {
"type": "string",
"format": "date-time"
},
"completedAt": {
"type": "string",
"format": "date-time",
"nullable": true
},
"modelSet": {
"type": "array",
"items": {
"type": "string"
}
},
"responseCount": {
"type": "integer"
},
"liveProviderResponseCount": {
"type": "integer"
},
"localFallbackResponseCount": {
"type": "integer"
},
"events": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"runId": {
"type": "string"
},
"sequence": {
"type": "integer"
},
"status": {
"type": "string",
"enum": [
"queued",
"running",
"completed",
"failed"
]
},
"progressPercent": {
"type": "integer"
},
"message": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": true
},
"createdAt": {
"type": "string",
"format": "date-time"
}
},
"required": [
"id",
"runId",
"sequence",
"status",
"progressPercent",
"message",
"metadata",
"createdAt"
]
}
}
},
"required": [
"id",
"status",
"startedAt",
"completedAt",
"modelSet",
"responseCount",
"liveProviderResponseCount",
"localFallbackResponseCount",
"events"
]
}404
application/jsonMonitor or run not found.
{
"type": "object",
"additionalProperties": true
}Try it
Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.