Hyreflow
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.

ToolDoes
apify_list_store_actorsSearch the actor store, ranked by quality score
apify_get_actor_input_schemaInspect required/optional input fields before running
apify_run_actor_syncRun an actor and get results in one call (default path)
apify_get_dataset_itemsPage 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: true and _successRate30d >= 95%; avoid _hyreflowDownranked actors.
  • For generic LinkedIn post scraping prefer supreme_coder/linkedin-post; for post reactions/engagers prefer harvestapi/linkedin-post-reactions.
  • Build actorId as username/name from store results, then call apify_get_actor_input_schema to confirm fields before running.
  • apify_run_actor_sync is the default; use the async run_actor only 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.

On this page