Launch Offer: $3 Starter Credits · Get Up to 3K Results

Extract Public Web Data.Get Results. Fast.

Extract business leads, search results, reviews and public data in minutes.No coding. Pay Only for Results. Export in 1 Click. Start Free

...

Bulk-collect local business contact info for precise B2B outreach across any vertical industry.

#
Company Name
Email
LinkedIn
Facebook
Instagram
01
Sunrise Real Estate Group
contact@sunriserealty.com
sunrise-re
SunriseRE
sunrise
02
BluePeak Law Firm
info@bluepeaklaw.com
bluepeak-law
BluePeakLaw
bluepeaklaw
03
Greenfield Dental Studio
hello@greenfielddental.com
greenfield-ds
GFDental
gfdental
04
Nova Digital Marketing Agency
team@novadigital.io
nova-digital
NovaDigital
novadigital
05
Crestwood Financial Advisors
advisor@crestwoodfa.com
crestwood-fa
CrestwoodFA
crestwoodfa
#
Keyword
Rank
Search URL
Root Domain
Snippet
01
best crm software
#1
https://www.google.com/search?q=best+crm+software&start=0
salesforce.com
The world's #1 CRM platform. Connect with...
02
best crm software
#2
https://www.google.com/search?q=best+crm+software&start=0
hubspot.com
HubSpot CRM is free forever. Manage...
03
best crm software
#3
https://www.google.com/search?q=best+crm+software&start=0
monday.com
monday.com CRM helps your team manage...
04
best crm software
#4
https://www.google.com/search?q=best+crm+software&start=0
zoho.com
Zoho CRM empowers a global network...
05
best crm software
#5
https://www.google.com/search?q=best+crm+software&start=0
pipedrive.com
Pipedrive is the easy-to-use, #1 user-rated...
#
Product Name
Product ID
Price
Rating
Review Count
01
Anker 65W USB-C GaN Charger (3-Port)...
B09C3HQXQK
$29.99
4.8
68,421
02
Kindle Paperwhite 11th Gen 8GB Waterproof
B08KTZ8249
$139.99
4.7
42,186
03
LEGO Icons Botanical Collection Rose Bouquet
B09BCZM4P3
$49.99
4.6
31,047
04
Instant Pot Duo 7-in-1 Electric Pressure Cooker 6Qt
B00FLYWNYQ
$89.95
4.7
127,834
05
Sony WH-1000XM5 Wireless Noise Canceling Headphones
B09XS7JWHH
$279.99
4.6
19,203
#
Product Name
Price
Units Sold
Seller
Shipping
01
Apple Watch Series 9 GPS 45mm Midnight...
$329.00
4,821 sold
SmartSalesUSA
Free 2-4 day delivery
02
Samsung Galaxy S24 Ultra 256GB Unlocked
$899.99
2,104 sold
dealscaly
Free shipping
03
Sony PlayStation 5 Console Disc Version
$449.95
595 sold
AmazingWireless
Free 2-day delivery
04
DJI Mini 4 Pro Drone with RC 2 Controller
$759.00
312 sold
guaranteecellular
Free 2-4 day delivery
05
Bose QuietComfort 45 Wireless Headphones
$199.00
1,846 sold
dealscaly
Free shipping
Popular Data Sources

Extract Data from Any Platform

Ready-to-use workers for maps, search, social media, e-commerce and more.

Google Maps Leads

Extract business names, phones, websites and reviews from Google Maps.

Explore

Google Search

Collect rankings, URLs, keywords and SERP data at scale.

Explore

Amazon Insights

Analyze products, pricing, sellers and customer reviews.

Explore

TikTok Analytics

Extract trending videos, creator metrics and engagement data.

Explore

Instagram Profiles

Collect public profile data, followers and contact fields.

Explore

Facebook Pages

Extract business pages, categories and contact information.

Explore

LinkedIn Leads

Find professional profiles and company lead information.

Explore

No Coding Required

Run workers and export results in minutes.

High Accuracy

Built-in anti-blocking and proxy rotation.

Export Anything

Export to CSV, Excel, JSON or API.

Pay Only for Results

No subscriptions. No monthly fees.

Try It Instantly

Try Without Registration

Pick a Worker, enter a URL, see instant results.

Select a Demo

Demo Mode

The demo mode always returns 1 result. Sign up or log in to customize more parameters in the console.

Use Cases

Turn public web data into business decisions

CoreClaw Workers can scrape the latest web data from any public website—no code required.

Data for AI

Extract clean web content, product data and reviews to support AI training, RAG, and data enrichment workflows.

View Details

B2B Lead Generation

Extract public business information from platforms like Google Maps and LinkedIn, and turn it into prospect data.

View Details

E-Commerce

Collect product listings, prices, seller information, and availability data from ecommerce platforms for analysis and monitoring.

View Details

Price Monitoring

Monitor product prices, stock status, promotions, and seller changes across ecommerce websites.

View Details

Influencer Discovery

Extract public posts, engagement data, hashtags, and profile information from social platforms to find creators for potential partnerships.

View Details

Market Research

Track public market signals from reviews, product listings, search results, forums, and competitor pages.

View Details

Need Help With Web Data? We’ve Got You Covered

From setup to custom scraping, our team helps you choose the right Worker, learn with documentation, or build a custom data workflow.

Learn with Documentation
Follow step-by-step guides to run Workers, configure inputs, export results, and connect data to your workflow.
Get Custom Workers
Our experienced team can help you design, implement, and successfully execute your web scraping project.

Request a Custom Worker

Tell us what website, data fields, and delivery format you need. Our team will review your request and suggest the best approach.

View Documentation
Average response time: under 2 hoursOur team will help you choose the right Worker or design a custom workflow.
For Worker Creators

Publish Workers, Earn Revenue

Turn your scraping scripts and automation workflows into reusable Workers. Publish them on CoreClaw, reach real users, and earn revenue from successful runs.

No Upfront Costs

Publish your Worker for free. CoreClaw handles hosting, execution, and user access, so you can start without building a full SaaS product.

Rely on CoreClaw Infrastructure

Your Workers run on managed infrastructure with scheduling, logs, retries, and scaling support built in.

Distribution and Billing Included

Reach users through the CoreClaw marketplace. We handle usage tracking, billing, and payouts so you can focus on building better Workers.

#!/usr/bin/env python3
import requests
import json
from typing import Dict, Any, Optional

# API URL
API_URL = "https://openapi.coreclaw.com/api/v1/scraper/run"

# Your API KEY
API_KEY = "<YOUR_API_KEY>"

# Curl timeout (seconds)
TIMEOUT = 30

def run_scraper(params: Dict[str, Any], api_key: str) -> Dict[str, Any]:
    headers = {
        "api-key": api_key,
        "Content-Type": "application/json"
    }

    try:
        # Send POST request
        response = requests.post(
            API_URL,
            headers=headers,
            json=params,
            timeout=TIMEOUT
        )

        # Check HTTP status code
        if response.status_code != 200:
            return {
                "success": False,
                "run_slug": None,
                "error": f"HTTP error: {response.status_code} - {response.text}"
            }

        # Parse response
        result = response.json()

        # Check business error code
        if result.get("code") != 0:
            return {
                "success": False,
                "run_slug": None,
                "error": f"Business error: {result.get("message", "Unknown error")} (code: {result.get("code")})"
            }

        # Return success result
        return {
            "success": True,
            "run_slug": result.get("data", {}).get("run_slug"),
            "error": None
        }

    except requests.exceptions.Timeout:
        return {
            "success": False,
            "run_slug": None,
            "error": f"Request timeout after {TIMEOUT} seconds"
        }
    except requests.exceptions.RequestException as e:
        return {
            "success": False,
            "run_slug": None,
            "error": f"Request error: {str(e)}"
        }
    except json.JSONDecodeError as e:
        return {
            "success": False,
            "run_slug": None,
            "error": f"JSON decode error: {str(e)}"
        }

def main():
    # Build request parameters
    request_params = {
        "scraper_slug": "01KG3VTPJMC1AYPTBPACKQKJBV",
        "version": "v1.0.7",
        "input": {
            "parameters": {
                "system": {
                    "proxy_region": "",
                    "cpus": 0.125,
                    "memory": 512,
                    "execute_limit_time_seconds": 1800,
                    "max_total_charge": 0,
                    "max_total_traffic": 0
                },
                "custom": {
                   "url": [
                       {
                           "url": "https://www.facebook.com/share/p/1K6xfHFkrK/",
                           "comments_sort": "All comments",
                           "limit_records": "",
                           "get_all_replies": ""
                       }
                   ]
               }
            }
        },
        "callback_url": "https://your-domain.com/callback"
    }

    # Send request
    print("Sending request to API...")
    result = run_scraper(request_params, API_KEY)

    # Handle result
    if result["success"]:
        print("Worker run successful!")
        print(f"Run ID: {result['run_slug']}")
        print("You can use this ID to query run status and results")
    else:
        print("Request failed!")
        print(f"Error message: {result['error']}")

if __name__ == "__main__":
    main()
Customer Reviews

Loved by Our Customers

Real feedback from Used by teams worldwide

"We used to spend hours manually copying contacts from Google Maps. Now it takes 5 minutes. Collecting contacts and info from Google Maps manually is reduced from hours to minutes, powering cold outreach and saving your team 10+ hours weekly."

Olivia Carter
Olivia Carter
Sales Director
B2B Marketing Agency

"Finally a price tracking tool that works. We monitor ~500 SKUs on Amazon. Had some rate limit issues at first, but support sorted it out. Would be great if they add Shopee."

William Clark
William Clark
E-commerce Manager
Cross-border E-commerce

"Not a developer, so building scrapers was always a pain. These Workers are pretty plug-and-play. CSV export fits right into my pipeline. Took a bit to learn the scheduling, but now it just runs."

Daniel Lewis
Daniel Lewis
Data Analyst
Market Research Firm
Compliance Certifications - CCPA, GDPR, ISO 27001:2013
COMPLIANCE

Ethical Web Data Collection

CoreClaw is committed to ethical web data practices. We extract only publicly available information, respect robots.txt and website terms, and maintain transparent data use policies. No personal data collection. No private information access.

FAQ

Frequently Asked Questions