Website-checker-starter avatar
Website-checker-starter
Try for free

No credit card required

View all Actors
Website-checker-starter

Website-checker-starter

vaclavrut/website-checker-starter
Try for free

No credit card required

Works with lukaskrivka/website-checker. The idea is that this actor manages more URLs on the input, will start website-checker with 10 runs at a time and store all data to one datasets.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "http://idnes.cz/",
12        "https://news.ycombinator.com/"
13    ],
14    "proxyConfiguration": {
15        "useApifyProxy": true
16    }
17};
18
19(async () => {
20    // Run the Actor and wait for it to finish
21    const run = await client.actor("vaclavrut/website-checker-starter").call(input);
22
23    // Fetch and print Actor results from the run's dataset (if any)
24    console.log('Results from dataset');
25    const { items } = await client.dataset(run.defaultDatasetId).listItems();
26    items.forEach((item) => {
27        console.dir(item);
28    });
29})();
Developer
Maintained by Community
Actor metrics
  • 2 monthly users
  • 0.0 days response time
  • Created in Jun 2021
  • Modified over 1 year ago
Categories