Ecommerce Store Database API
Query the ecommerce store database via API. Access millions of stores with revenue, traffic, employee, and contact data. Requires $649/mo plan.
Included with $649/mo plan
GET /api/v1/database/ecommerceDatabase APIs are included with the $649/mo plan.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page | number | Optional | Page number (default: 1)Default: 1Example: 1 |
limit | number | Optional | Results per page (max: 100)Default: 50Example: 100 |
platform | string[] | Optional | Filter by ecommerce platform (multiple allowed)Example: Shopify |
country | string[] | Optional | Filter by country code (multiple allowed)Example: US |
state | string | Optional | Filter by state (partial match)Example: California |
city | string | Optional | Filter by city (partial match)Example: Los Angeles |
category | string[] | Optional | Filter by store category (multiple allowed)Example: Apparel |
merchant | string | Optional | Filter by merchant name (partial match)Example: Nike |
domain | string | Optional | Filter by domain (partial match)Example: nike.com |
technologies | string[] | Optional | Filter by technology stack (multiple allowed)Example: Klaviyo |
salesMin | number | Optional | Minimum monthly revenueExample: 100000 |
salesMax | number | Optional | Maximum monthly revenueExample: 10000000 |
visitsMin | number | Optional | Minimum monthly visitsExample: 50000 |
visitsMax | number | Optional | Maximum monthly visitsExample: 5000000 |
employeesMin | number | Optional | Minimum employee countExample: 10 |
employeesMax | number | Optional | Maximum employee countExample: 500 |
hasEmail | boolean | Optional | Only return stores with email addressesDefault: falseExample: true |
hasPhone | boolean | Optional | Only return stores with phone numbersDefault: falseExample: true |
hasInstagram | boolean | Optional | Only return stores with InstagramDefault: falseExample: true |
hasFacebook | boolean | Optional | Only return stores with FacebookDefault: falseExample: true |
hasTiktok | boolean | Optional | Only return stores with TikTokDefault: falseExample: true |
Examples
Find Shopify stores with 500K+ monthly revenue
curl "https://app.scrapercity.com/api/v1/database/ecommerce?platform=Shopify&salesMin=500000&hasEmail=true&limit=100" \ -H "Authorization: Bearer YOUR_API_KEY"
Search for stores using Klaviyo in the US
curl "https://app.scrapercity.com/api/v1/database/ecommerce?technologies=Klaviyo&country=US&limit=50" \ -H "Authorization: Bearer YOUR_API_KEY"
Find high-traffic apparel stores
curl "https://app.scrapercity.com/api/v1/database/ecommerce?category=Apparel&visitsMin=100000&employeesMin=10&limit=100" \ -H "Authorization: Bearer YOUR_API_KEY"
Use Cases
- •Build targeted outreach lists for ecommerce brands
- •Identify potential clients by technology stack
- •Analyze competitor landscapes by category and revenue
- •Feed ecommerce data into your CRM or analytics pipeline
Best Practices
- •Use revenue and employee filters to target the right size stores
- •Rate limit: 100 stores per request, 100,000 stores per day
- •Combine platform + category + location for precise targeting
- •Use technologies filter to find stores using specific tools (Klaviyo, Shopify Plus, etc.)
- •Requires $649/mo plan - upgrade at /dashboard/billing
- •Daily limit resets at midnight UTC
Every scrape returns a runId. Poll GET /api/v1/scrape/status/{runId} until it completes, then download via GET /api/downloads/{runId}?format=csv.
Authenticate every request with Authorization: Bearer YOUR_API_KEY. See the full API reference for authentication, rate limits and error codes.