Skip to main content
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 .md to its URL or sending Accept: text/markdown.
Monitor events can feed directly into a Task API call to go deeper on any detected signal. Use follow-up tasks to enrich a signal with structured fields or launch a full research report—without any manual handoff. The flow is the same in both cases: receive a webhook, fetch the event, pass its output.content as the input and its event_id as previous_interaction_id to a new Task Run. Passing event_id as previous_interaction_id carries the monitor event’s full context forward into the Task run, preserving provenance through every step of the chain. See Interactions for details.

Scenario 1: Structured Enrichment on a Detected Event

Use this when you want to extract machine-readable fields from a detected event—for example, pulling company, amount, and round from a funding announcement.
See Task Enrichment for full details on structured extraction, output schemas, and polling.

Scenario 2: Deep Research on a Detected Event

Use this when you want a comprehensive report on a detected signal—for example, analyzing the strategic implications of a regulatory ruling or a competitor announcement.
Deep research runs are asynchronous. Poll GET /v1/tasks/runs/{run_id} or use a Task webhook to receive the completed report. See Deep Research for full details.
  • Interactions: How previous_interaction_id chains context across API calls.
  • Task Enrichment: Structured data extraction at scale.
  • Deep Research: Multi-step research reports from natural language prompts.
  • Research Basis: Citations and reasoning on Task API outputs.
  • Events: Event model and retrieval options.