Documentation Index
Fetch the complete documentation index at: https://docs.parallel.ai/llms.txt
Use this file to discover all available pages before exploring further.
For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
A snapshot monitor watches the structured output of a Task Run on a schedule. Each execution re-runs the same task and compares the result against the previous snapshot. When the system detects a material change—new data, a removed field, a significant value shift—it fires a webhook.
This gives you task cron with built-in deduplication and reasoning about what actually changed, at a fraction of the cost of running full Task API calls independently.
Typical use cases:
.md to its URL or sending Accept: text/markdown.- Executive team or board changes at a company
- Competitor pricing or product page updates
- Regulatory filing status changes
- Job posting additions or removals
Prerequisites
Generate your API key on Platform:Step 1. Create a Task Run to establish a baseline
A snapshot monitor requires a completed Task Run as its starting point. The run’s output schema becomes the template the monitor tracks over time. Create a Task Run that extracts structured data—here, the executive team of a company:cURL
GET /v1/tasks/runs/{run_id} or use a webhook). Once status is "completed", note the run_id—you’ll use it in the next step.
See Task API Quickstart for full details on creating and polling task runs.
Step 2. Create a snapshot monitor
Create a snapshot monitor that re-runs the same task weekly and fires when the output changes:cURL
Step 3. Receive and retrieve events
When the monitor detects a material change, your webhook receives:event_group_id as a query parameter:
cURL
changed_outputcontains only the fields that changed, each withbasis(citations and reasoning).previous_outputcontains the full output from the prior run for comparison.
Next Steps
- Event Stream Quickstart: Track new events as they appear on the web.
- Events: Full event model and retrieval options.
- Follow-up Tasks: Trigger structured enrichment or deep research from a monitor event.
- API Reference: Complete endpoint documentation.