Scenario
You want to extract a small structured record from a single product URL and verify that your API integration is working end to end.Architecture
Recommended request flow
| Step | API call |
|---|---|
| 1 | POST /api/v1/tasks |
| 2 | POST /api/v1/tasks/:id/run |
| 3 | GET /api/v1/executions/:id |
| 4 | GET /api/v1/executions/:id/results/export |
Step 1: create the task
Step 2: run the task
Step 3: poll for completion
completed.
Step 4: export the result
Why this example matters
This flow validates the full user path:- Authentication
- Task creation
- Execution lifecycle
- Result retrieval