Storeleads Scraper Ppe avatar

Storeleads Scraper Ppe

Pricing

from $6.00 / 1,000 results

Go to Apify Store
Storeleads Scraper Ppe

Storeleads Scraper Ppe

Pay-per-result Store Leads scraper. Look up Shopify, WooCommerce, BigCommerce stores by domain or search with filters. Extract traffic, sales, employees, technologies, social profiles (Instagram, Facebook, TikTok), contact emails, and 80+ fields per store.

Pricing

from $6.00 / 1,000 results

Rating

0.0

(0)

Developer

SilentFlow

SilentFlow

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Share

Store Leads Scraper - Pay Per Event

by SilentFlow

Pay only for the data you get! Proxies included, no compute costs.

Extract ecommerce store intelligence from Store Leads. Look up any domain or search with advanced filters to get company info, traffic estimates, sales data, technologies, social profiles, and 80+ data fields per store.

Why use this scraper?

  • Pay per result: Only pay for stores you get - no compute costs
  • Proxies included: No need to configure or pay for proxies separately
  • Two authentication modes: Use your API key or session cookies
  • Bulk domain lookups: Look up hundreds of domains in a single run
  • 80+ data fields: Traffic, sales, technologies, social profiles, employees, products, and more

Use cases

IndustryApplication
Lead generationBuild targeted lists of ecommerce stores by platform, country, or category
Market researchAnalyze traffic, sales estimates, and technology adoption across segments
Competitive intelligenceMonitor competitors' tech stack, apps, social presence, and growth
Investment researchScreen ecommerce companies by revenue, traffic, and employee count
Agency prospectingFind Shopify/WooCommerce stores that match your ideal client profile
App developersIdentify stores using specific apps or technologies for outreach

Input parameters

ParameterTypeDescription
startUrlsarrayDashboard search URL(s) from storeleads.app/dashboard with filters applied
domainsarrayList of domain names for direct lookup (e.g., "allbirds.com")

Authentication

ParameterTypeDescription
apiKeystringYour Store Leads API key. Find it in Settings > API
cookiesarraySession cookies exported from your browser after logging into storeleads.app

Limits

ParameterTypeDefaultDescription
maxItemsinteger100Maximum total stores to save
maxPagesinteger10Maximum pages per dashboard search

Advanced

ParameterTypeDefaultDescription
requestTimeoutinteger30Request timeout in seconds
debugModebooleanfalseEnable detailed logging

Note: Proxy is automatically configured in Pay Per Event mode. No proxy setup needed.

Output data

Store example

{
"domain": "allbirds.com",
"name": "Allbirds",
"title": "Allbirds | Sustainable Shoes & Clothing",
"description": "Allbirds makes the most comfortable shoes using sustainable materials.",
"platform": "shopify",
"platformDomain": "allbirds.myshopify.com",
"platformRank": 42,
"city": "San Francisco",
"state": "California",
"country": "United States",
"countryCode": "US",
"estimatedVisits": 3500000,
"estimatedPageViews": 8750000,
"estimatedSales": 1200000000,
"estimatedSalesYearly": 14400000000,
"productCount": 156,
"avgPrice": 98.50,
"avgPriceFormatted": "$98.50",
"currencyCode": "USD",
"employeeCount": 800,
"rank": 156,
"technologies": ["Shopify", "Google Analytics", "Klaviyo", "Yotpo"],
"theme": {
"name": "Custom",
"vendor": "Allbirds",
"version": "8.0.0"
},
"categories": ["Footwear", "Apparel"],
"features": ["Free Shipping", "International Shipping", "Reviews"],
"contactInfo": [
{"type": "email", "value": "hello@allbirds.com", "source": "website"},
{"type": "instagram", "value": "allbirds", "username": "allbirds", "url": "https://instagram.com/allbirds", "followers": 1200000, "postsCount": 2850, "description": "Better Things in a Better Way"},
{"type": "twitter", "value": "allbirds", "username": "allbirds", "url": "https://twitter.com/allbirds", "followers": 85000},
{"type": "facebook", "value": "weareallbirds", "username": "weareallbirds", "url": "https://facebook.com/weareallbirds", "followers": 450000}
],
"contactPage": "https://allbirds.com/pages/contact",
"returnsPage": "https://allbirds.com/pages/returns",
"storeState": "Active",
"createdAt": "2016-03-15",
"lastUpdatedAt": "2026-02-20",
"scrapedAt": "2026-02-24T10:30:00Z",
"dataType": "domain"
}

Data fields

CategoryFields
Identitydomain, name, title, description, keywords, favicon, language, aliases
Locationcity, state, country, countryCode, postalCode, streetAddress, latitude, longitude
Platformplatform, platformDomain, platformRank, plan
TrafficestimatedVisits, estimatedPageViews
SalesestimatedSales, estimatedSalesYearly
ProductsproductCount, variantCount, collectionCount, avgPrice, minPrice, maxPrice, currencyCode
Rankingsrank, rankPercentile, ccRank, ccCentrality
CompanymerchantName, employeeCount, monthlyAppSpend
Technologytechnologies, theme (name, style, vendor, version), apps
Contact & SocialcontactInfo (email, phone, social profiles with url, username, followers, postsCount, description), contactPage
PagesreturnsPage, warrantyPage, trackingPage, faqPage, brandsPage, retailerPage, etc.
Categoriescategories, tags, features
ClusteringclusterDomains, clusterBestRanked
ShippingshippingCarriers, shipsToCountries
StatusstoreState, createdAt, lastUpdatedAt, inactiveAt, redirectsTo
MetascrapedAt, dataType

Examples

Look up specific domains

{
"domains": ["allbirds.com", "gymshark.com", "fashionnova.com"],
"apiKey": "your_api_key_here",
"maxItems": 100
}

Search US Shopify stores

{
"startUrls": [{"url": "https://storeleads.app/dashboard/domains/f%3Acc=US&f%3Ap=1"}],
"apiKey": "your_api_key_here",
"maxItems": 500
}

Integrations

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("silentflow/storeleads-scraper-ppe").call(run_input={
"domains": ["allbirds.com", "gymshark.com"],
"apiKey": "your_storeleads_api_key",
"maxItems": 100,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{item['domain']} - {item['name']} - Visits: {item['estimatedVisits']}")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('silentflow/storeleads-scraper-ppe').call({
domains: ['allbirds.com', 'gymshark.com'],
apiKey: 'your_storeleads_api_key',
maxItems: 100,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item => {
console.log(`${item.domain} - ${item.name} - Visits: ${item.estimatedVisits}`);
});

FAQ

Q: Do I need to configure proxies? A: No, proxies are included and automatically configured.

Q: What's the difference with the standard version? A: The standard version charges compute time and you provide your own proxy. This version includes everything at a flat rate per result.

Q: Do I need a Store Leads account? A: Yes, you need either a Store Leads API key or session cookies for authentication.

Q: How do I get a Store Leads API key? A: Log into storeleads.app, go to account settings, find the API tab, and generate a key.

Q: Can I look up any domain? A: Store Leads tracks 13M+ active ecommerce stores. If a domain is in their database, you'll get data for it.

Support

Need help? We're here for you:

  • Feature requests: Let us know what you need
  • Custom solutions: Contact us for enterprise integrations or high-volume needs

Check out our other scrapers: SilentFlow on Apify