6sense Pixel Checker
Pricing
Pay per usage
Go to Apify Store
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Mudit Korpaul
Maintained by Community
Actor stats
1
Bookmarked
6
Total users
6
Monthly active users
3 months ago
Last modified
Categories
Share
6sense Pixel Checker (j.6sc.co Detector)
This Apify Actor checks whether websites contain the 6sense tracking pixel or not.
It uses Puppeteer with stealth mode to load each domain and scan the HTML + scripts for pixel references.
🚀 Features
- Accepts a list of domains (with or without
https://) - Normalizes and deduplicates URLs before crawling
- Uses Puppeteer stealth plugin to avoid detection
- Scans
<script>tags and page HTML for j.6sc.co - Outputs structured dataset with pixel detection results
- Captures errors if a page fails to load or times out
📥 Input Schema
{"domains": ["checkout.com", "stripe.com", "paypal.com"],"concurrency": 10,"timeout": 30}
- domains (array, required): List of domains to check. Example:
"stripe.com"or"https://checkout.com". - concurrency (integer, optional): Number of parallel browsers. Default:
10. - timeout (integer, optional): Page load timeout (seconds). Default:
30.
📤 Output Schema
Each result is pushed into the dataset:
{"url": "https://stripe.com","inputURL": "stripe.com","pixelFound": true,"error": null}
- url: Normalized domain URL checked
- inputURL: Original user-provided domain
- pixelFound: Boolean, true if pixel detected
- error: Error message if crawl failed, otherwise null
▶️ Example Run
$apify run --input '{ "domains": ["logicmonitor.com", "paypal.com"] }'
Example dataset output:
| url | inputURL | pixelFound | error |
|---|---|---|---|
| https://logicmonitor.com | logicmonitor.com | true | null |
| https://paypal.com | paypal.com | false | null |
📌 Notes
- Works best with clean domains (no paths or query params).
- Default inputs are provided so the actor passes Apify QA checks.
- Errors (timeouts, navigation issues) are captured per domain.
Built with ❤️ by Mudit Korpaul


