ParseHub
Developer ToolsParseHub is a visual web scraping tool. Workflows run the projects you built in the ParseHub client, pass parameters into them, and collect the extracted data when a run is ready.
What This Integration Enables
The ParseHub project is a human artifact and this page will not pretend otherwise. Somebody sat in the desktop client, clicked through the target site, and taught it which elements matter, which links to follow, and where the pagination is. That work is judgment, it holds up well against messy pages, and no API replaces it. FlowRunner does not build the project. It runs it, parameterizes it, and gets the results to where the decision happens.
The operation that makes this more than a scheduled button press is the starting scope override on Run Project. It sets the run's starting global values, which means one project can be pointed at a different search term, region, or category on every run instead of being duplicated once per variation. The rest of the connector is about collecting what came back honestly: polling within the rate limit, reading the two status answers separately, storing large results as files rather than variables, and using the run's checksum to skip work when nothing actually changed. The human-in-the-loop moment is the one place a scraping pipeline usually goes quietly wrong.
Without FlowRunner
With FlowRunner
Use Case Scenarios
-
One project, every market
The pricing team maintains a single ParseHub project for a retailer's catalog pages. Each week the agent calls Run Project once per region with a different start value override, so the same extraction logic covers every market without a copy of the project per country. It polls Get Run at a sensible interval, because ParseHub answers with a rate limit error to a tight loop, then reads the results. Rows land in BigQuery or Google Sheets tagged by region, and the week over week movers post to Slack.
-
The scheduled project you never poll at all
For projects that already run on ParseHub's own schedule, there is nothing to start and nothing to wait for. The agent calls Get Last Ready Data, which returns the most recent completed run's results directly with no run token, no polling loop, and no rate limit risk. That single call is the whole integration for this pattern. The one thing the workflow has to remember is that it returns the last ready data, so it deliberately checks the run timestamp rather than assuming freshness, which also catches a scheduled project that quietly stopped running.
-
Large extractions that stay files
A catalog sweep returns far more than a workflow wants to carry around as a variable, and a CSV is unusable as one in any case. Download Run Data fetches the run's output and stores it in FlowRunner file storage, decompressed, returning a URL. A later step attaches it to an email, uploads it to Snowflake, or drops it into the review folder for the analyst. If the run was started for a one off question and the data is sensitive, the workflow calls Cancel Run and then Delete Run once the file is stored, in that order, because deleting does not cancel a run that is still going.
Human-in-Loop Highlight
ParseHub reports two things about a finished run and they do not agree as often as you would expect. Whether it succeeded, and whether it has data. A run that was stopped early or errored can still carry the rows it managed to collect before it stopped, which is why the connector surfaces those as separate answers rather than one. The failure mode this creates is specific and quiet: a workflow that branches on whether data came back happily ingests half a competitor catalog and publishes it as this week's complete price list. The missing products look like delistings. Nobody sees an error anywhere. So when a run comes back unsuccessful with data attached, the agent stops and hands over the comparison it already has: "Run 8841 on the DE catalog ended in error with 412 rows. Last week's successful run had 1,096, and the checksum differs from every previous run. Accept as partial, rerun, or hold the pricing update?" The analyst decides. Machines are good at noticing the row count moved. Deciding whether that is a market event or a broken scraper is not a machine's call.
Agent Capabilities
9 actionsProjects
2- List Projects Returns the projects in the account. The page size is capped, so an account with many projects needs paging, and the total in the response is how a workflow knows.
- Get Project Returns one project with its most recent runs. The run list carries no ordering guarantee, so a workflow reads the project's own last run and last ready run fields rather than taking the first entry.
Runs
7- Run Project Starts a run of a project. It returns immediately with a queued run rather than data. The starting scope override is what parameterizes a scraper, so one project can be run against a different search term or region each time.
- Get Run Returns a run's status and progress, with finished, successful, and has data reported separately so a workflow can branch without reimplementing the status table. Poll it sparingly, because ParseHub rate limits.
- Get Run Data Returns the data a run extracted, decompressed. Check that the run's data is ready first, and use the run's checksum to tell whether the results actually changed since last time.
- Get Last Ready Data Returns the data of the project's most recent run whose data is ready, with no run token and no polling. For a project on a ParseHub schedule this is the entire integration. Immediately after starting a run it still returns the previous run's data.
- Download Run Data Fetches a run's data into FlowRunner file storage and returns a URL, decompressed so the file is the CSV or JSON itself. The right operation for a large scrape, which is unwieldy as a flow variable.
- Cancel Run Stops a running or queued run. The data gathered so far may still be available, which is why success and data availability are reported separately.
- Delete Run Permanently deletes a run and its data. It does not cancel a running one, so cancel first, and download anything worth keeping before calling it.
Frequently Asked Questions
What can FlowRunner do with ParseHub?
FlowRunner agents can run List Projects, Get Project, and Run Project in ParseHub, plus 6 more actions.
Does connecting ParseHub to FlowRunner require OAuth?
No. ParseHub connects to FlowRunner with an API key, no OAuth flow required.
Can ParseHub trigger a FlowRunner workflow automatically?
ParseHub doesn't currently expose triggers in FlowRunner. It connects as an action step inside workflows started by another trigger.
Start building with ParseHub
Free plan, no card required. Connect in minutes.