Similarweb Quick Scraper avatar
Similarweb Quick Scraper
Try for free

Pay $10.00 for 1,000 results

View all Actors
Similarweb Quick Scraper

Similarweb Quick Scraper

mscraper/similarweb-quick-scraper
Try for free

Pay $10.00 for 1,000 results

A quick scraper for Similarweb. Get needed data instantly for domains of your choice. Export accumulated data into formats such as HTML, JSON, or Excel.

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  "websites": [
8    "apple.com",
9    "microsoft.com",
10    "google.com",
11    "twitter.com",
12    "samsung.com",
13    "hp.com",
14    "dell.com",
15    "mi.com",
16    "lg.com",
17    "sony.com"
18  ],
19  "proxy": {
20    "useApifyProxy": true,
21    "apifyProxyCountry": "US"
22  }
23}
24EOF
25
26# Run the Actor using an HTTP API
27# See the full API reference at https://docs.apify.com/api/v2
28curl "https://api.apify.com/v2/acts/mscraper~similarweb-quick-scraper/runs?token=$API_TOKEN" \
29  -X POST \
30  -d @input.json \
31  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 34 monthly users
  • 4 stars
  • 100.0% runs succeeded
  • 1.8 days response time
  • Created in Jun 2023
  • Modified 7 months ago