Documentation Index
Fetch the complete documentation index at: https://webscraping.titannet.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Scenario
You want to monitor a product page every hour, keep a stable execution history, and export recurring results for downstream analysis.Architecture
Recommended request flow
| Step | API call or concept |
|---|---|
| 1 | POST /api/v1/tasks with execution_type: "scheduled" |
| 2 | Monitor executions through GET /api/v1/tasks/:id/executions |
| 3 | Inspect completed datasets and exports |
Example task
Why scheduling changes the integration model
In a scheduled workflow:- The task becomes the durable definition
- Executions become the runtime history
- Datasets become the user-facing accumulated output
Good practices for scheduled tasks
| Practice | Why it matters |
|---|---|
| Keep one stable task ID | Preserves historical continuity |
| Keep the schema stable | Simplifies analytics and downstream processing |
| Use execution history for runtime visibility | Avoids mixing runtime and definition concerns |
| Use dataset exports for downstream pipelines | Reduces the need to process each run manually |