A collection of 7 production-ready Apify actors for web scraping, automation, and data extraction — all monetized and available on the Apify Store.
| Actor | Category | Price | Description |
|---|---|---|---|
| Domain Intelligence Suite | SEO & Data | $0.005 | WHOIS, DNS, SSL, and tech stack lookup |
| Website Screenshot API | Developer Tools | $0.003 | Full-page screenshots via Playwright |
| Link Preview & Metadata Extractor | SEO Tools | $0.002 | Open Graph, Twitter Cards, JSON-LD extraction |
| Screenshot Comparison Tool | Developer Tools | $0.005 | Pixel-level visual diff with overlay |
| Swedish Company Registry | Data & Compliance | $0.003 | Bolagsverket official company data |
| IP Geolocation Lookup | Network Tools | $0.003 | IP to location, ISP, ASN with multi-provider fallback |
| QR Code Generator | Developer Tools | $0.002 | PNG/SVG QR codes via API |
All actors built with:
- Apify Python SDK v3.4 — Input/output, storage, proxy, deployment
- Playwright — Browser automation for JS-heavy sites
- aiohttp — Fast HTTP scraping (no browser overhead)
- Pillow — Image processing for screenshots and QR codes
import requests
API_TOKEN = "YOUR_APIFY_TOKEN"
ACTOR = "weeknds~domain-intelligence-suite"
# Start a run
resp = requests.post(
f"https://api.apify.com/v2/acts/{ACTOR}/runs",
headers={"Authorization": f"Bearer {API_TOKEN}"},
json={"url": "https://example.com"}
)
run_id = resp.json()["data"]["id"]
# Get results
items = requests.get(
f"https://api.apify.com/v2/acts/{ACTOR}/runs/{run_id}/dataset/items",
headers={"Authorization": f"Bearer {API_TOKEN}"}
).json()
print(items)Or via the Apify CLI:
apify call weeknds~domain-intelligence-suite --input '{"url": "https://example.com"}'All actors use pay-per-event pricing — you only pay when an actor runs. No subscriptions, no minimums. Prices range from $0.002 to $0.005 per run.
| Runs/Month | Total Cost |
|---|---|
| 100 | ~$0.30 |
| 1,000 | ~$3.00 |
| 10,000 | ~$30.00 |
Every actor targets a zero-competition niche on the Apify Store. Instead of fighting established actors in crowded categories (LinkedIn, Amazon, Twitter), these fill gaps where no solution previously existed.
Read the full story: How I Built 7 Apify Actors and Started Earning Passive Income
- Best Free & Low-Cost Web Scraping APIs on Apify in 2026
- How to Extract Metadata from Any URL in 5 Lines of Code
MIT — use, modify, and deploy these actors as you see fit. Attribution appreciated but not required.
Built by @weeknds — questions, feature requests, or custom actor needs? Open an issue.