scrapeer_run_flow_and_wait
Run a scraping flow by ID or name and wait for results. Triggers a cloud run, polls until completion, and returns structured data.
Instructions
Execute a scraping flow and wait for results. This is the recommended way to run flows. Accepts either a flow ID (UUID) or a flow name. USE THIS TOOL WHEN: user says "run my scraper", "scrape X", "execute my flow", or you need data from a pre-built flow. DO NOT USE: to check status of an already-running flow (use scrapeer_get_run_status), to list available flows (use scrapeer_list_flows first to find the flow). Triggers a cloud run, polls until complete, and returns structured results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flow | Yes | The flow ID (UUID) or flow name. If a name is provided, it will be resolved to an ID. If multiple flows match the name, all matches are returned so the user can choose. | |
| max_credits | No | Maximum credits to spend on this run. | |
| timeout_seconds | No | Maximum seconds to wait for completion. Default 300 (5 min). Set 0 to return immediately after triggering. |