novada_scraper_status
Check async scraping task status using its task ID. Returns pending, running, complete, or failed and advises on next actions.
Instructions
Check the status of an async scraping task by task_id. Returns: pending, running, complete, or failed.
Required: task_id (from novada_scraper_submit). Pending/running: Retry in 5–10 seconds. Use exponential backoff (5s → 10s → 20s → 40s). Complete: Call novada_scraper_result with the same task_id to retrieve formatted data. Failed: Re-submit with novada_scraper_submit, or use novada_extract / novada_unblock as alternatives. agent_instruction: Each response includes the next action to take — always follow it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task_id returned by novada_scraper_submit. Used to poll scraping task progress. |