Example Process Crawl Results avatar

Example Process Crawl Results

Pricing

Pay per usage

Go to Apify Store
Example Process Crawl Results

Example Process Crawl Results

Iterates through all results from a crawler run and count them. Needs to be called from the crawler's finish webhook by adding an URL to finish the webhook of your crawler. Use this actor as a starting point to develop custom post-processing of data from the crawler.

Pricing

Pay per usage

Rating

4.5

(2)

Developer

Apify

Apify

Maintained by Apify

Actor stats

5

Bookmarked

11

Total users

0

Monthly active users

15 days ago

Last modified

Share

example-process-crawl-results

A webhook-triggered actor that post-processes results from another actor run.

Add this actor's run URL as the finish webhook of your actor. When the actor finishes, it calls this actor with the run ID. The actor then fetches all dataset results in paginated batches, counts them, and saves the total alongside the run details as OUTPUT.

Input

FieldTypeDescription
runIdstringID of the actor run to process

Output

Saved to OUTPUT in the default Key-Value Store and to the dataset:

{ "runId": "abc123", "runStatus": "SUCCEEDED", "totalItems": 42 }

Use this as a template for custom post-processing logic (data transformation, notifications, exports) after an actor run completes.