Integrations
Apify
Run web-automation/scraping actors from the Apify store — discover a vetted actor, inspect its schema, run it synchronously. BYOK-only on Hyreflow.
Use Apify when you need controlled web automation or scraping — LinkedIn post scraping, reactions/engagers, store reviews, and other vendor-specific extractors.
Apify is BYOK-only — it isn't resold on managed credits. Bring your own Apify token; calls are free on Hyreflow (Apify bills you directly on actor runtime/compute, so pilot a tiny run before scaling row counts).
Capabilities
Cost below is on your own Apify account (BYOK-only) — Hyreflow charges 0 credits for every Apify call.
| Tool | Does |
|---|---|
apify_list_store_actors | Search the actor store, ranked by quality score |
apify_get_actor_input_schema | Inspect required/optional input fields before running |
apify_run_actor_sync | Run an actor and get results in one call (default path) |
apify_get_dataset_items | Page through a run's output dataset |
Guidance
- Don't know the actor id? Start with
apify_list_store_actors. Results are ranked by quality (rating × reviews × runs × 30-day success); pick the #1 result unless you have a reason not to. Prefer_hyreflowVetted: trueand_successRate30d >= 95%; avoid_hyreflowDownrankedactors. - For generic LinkedIn post scraping prefer
supreme_coder/linkedin-post; for post reactions/engagers preferharvestapi/linkedin-post-reactions. - Build
actorIdasusername/namefrom store results, then callapify_get_actor_input_schemato confirm fields before running. apify_run_actor_syncis the default; use the asyncrun_actoronly when you need non-blocking execution, then poll run status before fetching outputs.- Wrapper fields (
actorId,input,params,timeoutMs) and runtime validation can differ from the actor's own docs — validate payload shape with a tiny run first.
hyreflow tools execute apify apify_run_actor_sync \
--payload '{"actorId":"supreme_coder/linkedin-post","input":{"urls":["https://www.linkedin.com/feed/update/..."]},"timeoutMs":120000}'To bypass quality ranking and use Apify's native sort, pass rankBy: "relevance" to apify_list_store_actors.