Instant web data scraper - Scrape any website avatar
Instant web data scraper - Scrape any website
Try for free

7 days trial then $10.00/month - No credit card required now

View all Actors
Instant web data scraper - Scrape any website

Instant web data scraper - Scrape any website

curious_coder/instant-web-scraper
Try for free

7 days trial then $10.00/month - No credit card required now

Scrape any public and private website data by providing just URL and optionally cookies and proxy information. This scraper is similar to instant data scraper but runs on cloud and can be used as API too!

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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "action": "scrapeData",
8  "url": "https://wordpress.org/plugins/?plugin_business_model=commercial",
9  "columnMappings": [
10    {
11      "key": "name",
12      "value": "2"
13    },
14    {
15      "key": "link",
16      "value": "0"
17    },
18    {
19      "key": "ratings",
20      "value": "4"
21    },
22    {
23      "key": "authorName",
24      "value": "8"
25    },
26    {
27      "key": "usersCount",
28      "value": "9"
29    },
30    {
31      "key": "description",
32      "value": "6"
33    },
34    {
35      "key": "lastUpdated",
36      "value": "11"
37    },
38    {
39      "key": "pluginLogo",
40      "value": "1"
41    }
42  ],
43  "tableNumber": 1,
44  "nextPageSelector": ".next.page-numbers",
45  "count": 100,
46  "minDelay": 2,
47  "maxDelay": 2
48}
49EOF
50
51# Run the Actor using an HTTP API
52# See the full API reference at https://docs.apify.com/api/v2
53curl "https://api.apify.com/v2/acts/curious_coder~instant-web-scraper/runs?token=$API_TOKEN" \
54  -X POST \
55  -d @input.json \
56  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 62 monthly users
  • 4 stars
  • 85.7% runs succeeded
  • Created in Aug 2023
  • Modified 5 days ago