Portal Community
Authentication: Every operation requires an ApiToken — your Apify API token found in Apify Console under Settings → Integrations. Store it in BizFirst Credentials Manager and reference it on each node.

What is Apify?

Apify is a cloud scraping and automation platform that lets you run headless-browser actors, crawlers, and data extraction scripts at scale without managing your own infrastructure. Each actor is a containerised program that can accept JSON input, browse websites, extract data, and store results in datasets or key-value stores.

The BizFirst Apify node connects directly to the Apify API, allowing your workflows to launch actors, wait for completion, and immediately consume the extracted data — all in a single workflow chain.

Resources & Operations — 11 Total

ResourceOperationDescription
actor  (4 operations)
actorrunStart an actor run asynchronously. Returns immediately with the run ID — use actorRun/getRun to poll for completion.
actorgetLastRunRetrieve the most recent run for an actor, optionally filtered by status.
actorrunAndGetDatasetItemsStart an actor, wait for it to finish, and return all items from its default dataset in a single operation.
actorscrapeSingleUrlConvenience operation — scrapes a single URL using Apify's built-in URL scraper actor. Returns HTML, text, and optional screenshot without requiring an actor ID.
actorRun  (3 operations)
actorRungetRunGet the current status and statistics for a specific run by its run ID.
actorRungetActorRunsList all runs for a specific actor with optional status filtering and pagination.
actorRungetUserRunsListList all runs across all actors belonging to the API token owner.
actorTask  (2 operations)
actorTaskrunExecute a pre-configured actor task. Tasks bundle an actor with saved input so you don't need to provide configuration each time.
actorTaskrunAndGetDatasetItemsRun a task and wait for completion, returning all dataset items — identical to actor/runAndGetDatasetItems but task-based.
dataset  (1 operation)
datasetgetItemsRead items from any named dataset by ID with pagination, field filtering, and clean mode.
keyValueStore  (1 operation)
keyValueStoregetRecordRetrieve a stored record from an Apify key-value store by store ID and record key.

Authentication

PropertyDetails
Auth methodAPI token — a single token is passed with every request via the Authorization header.
Where to get itApify Console → Settings → Integrations → API tokens. Create a personal token or a scoped token for a specific actor.
Node propertyApiToken — required on every operation.

Use Cases

In This Guide

Configuration

Complete property reference for all 11 operations including MemoryMb enum values and ActorId format notes.

Input & Output

Actor run object schema, dataset item format, key-value store record structure, and error port details.

Examples

Five practical examples: single URL scrape, full crawler run, dataset retrieval, scheduled runs, and task-based jobs.