Skip to main content
GET
/
v1alpha
/
monitors
/
{monitor_id}
/
executions
Retrieve Execution History
import requests

url = "https://api.parallel.ai/v1alpha/monitors/{monitor_id}/executions"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.json())
{
  "events": [
    {
      "monitor_run_id": "event_2025-01-15T10:30:00Z",
      "output": "New product launch announced",
      "event_date": "2025-01-15",
      "source_urls": [
        "https://example.com/news"
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

monitor_id
string
required

Query Parameters

lookback_period
string
default:10d

Response

Successful Response

Response containing monitor execution history.

events
Events · array
required

List of execution events for the monitor.

  • MonitorEventUpdate
  • MonitorExecutionError
  • MonitorExecutionCompletion