Legacy PhantomJS Crawler avatar

Legacy PhantomJS Crawler

Try for free

No credit card required

View all Actors
Legacy PhantomJS Crawler

Legacy PhantomJS Crawler

apify/legacy-phantomjs-crawler
Try for free

No credit card required

Replacement for the legacy Apify Crawler product with a backward-compatible interface. The actor uses PhantomJS headless browser to recursively crawl websites and extract data from them using a piece of front-end JavaScript code.

Do you want to learn more about this Actor?

Get a demo

You can access the Legacy PhantomJS Crawler programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1echo '{
2  "startUrls": [
3    {
4      "key": "START",
5      "value": "https://www.example.com/"
6    }
7  ],
8  "crawlPurls": [
9    {
10      "key": "MY_LABEL",
11      "value": "https://www.example.com/[.*]"
12    }
13  ],
14  "clickableElementsSelector": "a:not([rel=nofollow])",
15  "pageFunction": "function pageFunction(context) {\\n    // called on every page the crawler visits, use it to extract data from it\\n    var $ = context.jQuery;\\n    var result = {\\n        title: $('\''title'\'').text(),\\n        myValue: $('\''TODO'\'').text()\\n    };\\n    return result;\\n}\\n",
16  "interceptRequest": "function interceptRequest(context, newRequest) {\\n    // called whenever the crawler finds a link to a new page,\\n    // use it to override default behavior\\n    return newRequest;\\n}\\n"
17}' |
18apify call apify/legacy-phantomjs-crawler --silent --output-dataset

Legacy PhantomJS Crawler - Crawl websites, extract data API through CLI

The Apify CLI is the official tool that allows you to use Legacy PhantomJS Crawler locally, providing convenience functions and automatic retries on errors.

Install the Apify CLI

1npm i -g apify-cli
2apify login

Other API clients include:

Developer
Maintained by Apify
Actor metrics
  • 122 monthly users
  • 21 stars
  • 100.0% runs succeeded
  • 20 days response time
  • Created in Mar 2019
  • Modified 3 months ago