Website Checker Runner Puppeteer avatar
Website Checker Runner Puppeteer
Try for free

No credit card required

View all Actors
Website Checker Runner Puppeteer

Website Checker Runner Puppeteer

lukaskrivka/website-checker-puppeteer
Try for free

No credit card required

Checks the provided website using Puppeteer. This is a low level runner, most likely you want to use the high level master actor - https://apify.com/lukaskrivka/website-checker

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 more

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    "urlsToCheck": [
11        {
12            "url": "https://www.amazon.com/b?ie=UTF8&node=11392907011"
13        }
14    ],
15    "proxyConfiguration": {
16        "useApifyProxy": false
17    },
18    "linkSelector": "a[href]",
19    "pseudoUrls": [
20        {
21            "purl": "https://www.amazon.com[.*]/dp/[.*]"
22        }
23    ]
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("lukaskrivka/website-checker-puppeteer").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
33    const { items } = await client.dataset(run.defaultDatasetId).listItems();
34    items.forEach((item) => {
35        console.dir(item);
36    });
37})();
38
39// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 100.0% runs succeeded
  • 0.0 days response time
  • Created in Nov 2021
  • Modified over 1 year ago
Categories