API Reference
Contents
Overview
The Store Leads API is organized around REST. Our API has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP verbs, which are understood by off-the-shelf HTTP clients. JSON is returned by all API responses, including errors.
Authentication
Authenticate your account by including your API key in requests. If your account has access to the API, then you can generate an API key under the "API" tab of the Account page.
Note that API access is a paid feature so you'll need a paid account to continue..
Authentication is done by including your API key in an HTTP Authorization header.
Authorization: Bearer your.api.key
All API requests must be made over HTTPS. API requests without authentication will fail.
Errors
We use conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.). Codes in the 5xx range indicate an error with our servers (these are rare).
Rate Limits
Each API endpoint has a rate limit. If an account sends more than the allowed number of requests in a given time period, the API will respond with an HTTP 429 error code. The response will include a Retry-After header that contains the number of seconds to wait before trying again.
The rate limit for an endpoint depends on your subscription. Accounts on the Enterprise plan have the highest rate limits.
Resources
Apps
App objects represent an app that a store can install through the ecommerce platform's App Store. For instance, Merchant Mail is an app that can be installed through the Shopify App Store.
The attributes of the App object are documented below.
A long description of the App (if available).
Note: this field in not returned by default. To include this field in the response, use the fields request parameter (e,g., ?fields=*,description_long).
The time at which the App was installed by a Domain.
- Active
- Inactive (ie. removed from the App Store)
Retrieve an App
Retrieves the details of an App. The app is identified by combining the platform name with the app token (e.g., "shopify.marsello")
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello'
Example Response
{
"app": {
"average_rating": "4.4",
"app_store_url": "https://apps.shopify.com/marsello",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customer loyalty and marketing software for omnichannel businesses. Loyalty, rewards, emails \u0026 more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CMevhZDaj4cDEAE=.png",
"name": "Marsello: Loyalty, Email, SMS",
"token": "marsello",
"platform": "shopify",
"vendor_name": "Marsello",
"vendor_url": "https://apps.shopify.com/partners/recovermycart",
"vendor_email": "help@marsello.com",
"vendor_website": "https://www.marsello.com/",
"vendor_address": "4 Bond Street, Level 4, Wellington, WGN, 6011, NZ",
"id": "1.marsello",
"created_at": "2017-05-29T00:00:00",
"plans": [
{
"name": "Essential",
"monthly_cost": "$125/month",
"monthly_cost_cents": 12500
},
{
"name": "Professional",
"monthly_cost": "$135/month",
"monthly_cost_cents": 13500
}
],
"categories": [
"loyalty and rewards",
"email marketing"
],
"integrates_with": [
"Shopify Flow",
"Shopify POS",
"Checkout",
"Google My Business",
"Lightspeed",
"Cin7",
"Heartland Retail",
"Klaviyo",
"Facebook"
],
"review_count": 383,
"installs": 3075,
"instp": 0.0012909048928443987,
"installs_30d": -39,
"installs_90d": -82,
"reviews_90d": 9
}
}
List App Reviews
Returns a list of reviews for an App. By default, 50 Apps are returned in a single request. The page request option can be used to paginate.
Note that reviews are only available for Shopify apps.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=rating,domains.name
would return the rating field from each App review and the name field for all Domains.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Prefix fields with a minus sign (-) to denote descending sort order. Default: -updated_at
Valid fields are:
- updated_at
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello/reviews?page_size=2'
Example Response
{
"reviews": [
{
"updated_at": "2024-08-07T00:00:00Z",
"body": "The Account Manager, Shanaya, is fantastic and super helpful.",
"merchant_name": "WE-AR",
"domains": [
{
"platform_domain": "we-ar.myshopify.com",
"name": "we-ar.com",
"platform_rank": 62409
}
],
"rating": 5
},
{
"updated_at": "2024-08-01T00:00:00Z",
"body": "Marsello while having some great features for our loyalty offering isn't without it's hiccups. It has taken over a week to sort out issues changing from Lightspeed/woocommerce/marsello to Lightspeed/shopify/marsello and while the front support are helpful it can be hours for a response and in our case with things going to the technical team, days for a answer. Still weighing up wether the cost per system (if you have a physical store and an online store you get charged for each system) is worth the cost..",
"merchant_name": "JungleSurfshop",
"rating": 3
}
]
}
List Apps
Returns a list of Apps. By default, 50 Apps are returned in a single request. The page request option can be used to paginate.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second |
Pro and Elite | 2 requests/second |
Request Options
Filters the results to Apps that belong to the provided categories. Multiple categories must be comma-separated.
The boolean operation to apply to values provided in the f:categories request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with install counts greater than or equal to the provided integer value.
Filters the results to Apps with install counts than or equal to the provided integer value.
Filters the results to Apps on the given ecommerce platform. Multiple values must be comma-separated.
Valid values are:
- custom
- shopify
- wix
- woocommerce
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with review counts greater than or equal to the provided integer value.
Filters the results to Apps with review counts than or equal to the provided integer value.
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- average_rating
- created_at
- installs
- removed_at
- reviews
Filters Apps based on a text query. (e.g., a query for "dropship" will return only Apps that matching the word "dropship" in the App name or description fields).
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app?page_size=2&f:p=shopify&f:categories=marketing'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:p":"shopify","f:categories":"marketing"}' 'https://storeleads.app/json/api/v1/all/app'
Example Response
{
"apps": [
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/flashyapp-marketing-automation",
"state": "Active",
"description": "All-In-One Marketing Automation Platform for eCommerce",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/372dbfce35571e26aba38e41b47c5a0c/icon/CJXqis70lu8CEAE=.png?height=84\u0026width=84",
"name": "Flashy ‑ Marketing Automation",
"token": "flashyapp-marketing-automation",
"platform": "shopify",
"vendor_name": "Flashy",
"vendor_url": "https://apps.shopify.com/partners/developer-8c7c2ff225c2d971",
"vendor_email": "hello@flashyapp.com",
"vendor_website": "https://flashyapp.com",
"id": "1.flashyapp-marketing-automation",
"created_at": "2019-02-27T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$7/month",
"monthly_cost_cents": 700
},
{
"name": "Professional",
"monthly_cost": "$40/month",
"monthly_cost_cents": 4000
},
{
"name": "Master",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Enterprise",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"store design",
"marketing",
"conversion"
],
"review_count": 11
},
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/checkoutify",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Abandoned Carts Recovery with Email \u0026 Web Push Notifications.",
"icon_url": "https://apps.shopifycdn.com/listing_images/9426efac2fdaf3affe4f4a934d42eaf4/icon/adeda788be6fc234defeb422ab8e6265.png?height=84\u0026width=84",
"name": "Checkoutify ",
"token": "checkoutify",
"platform": "shopify",
"vendor_name": "MOTIF®",
"vendor_url": "https://apps.shopify.com/partners/raawaz",
"vendor_email": "hello@checkoutify.co",
"vendor_website": "https://checkoutify.co",
"id": "1.checkoutify",
"created_at": "2019-07-03T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$25.99/month",
"monthly_cost_cents": 2599
},
{
"name": "Advanced",
"monthly_cost": "$49.99/month",
"monthly_cost_cents": 4999
},
{
"name": "Premier",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
},
{
"name": "Elite",
"monthly_cost": "$149.99/month",
"monthly_cost_cents": 14999
}
],
"categories": [
"store design",
"marketing",
"sales and conversion optimization"
],
"review_count": 6
}
]
}
Domains
Domain objects represent an online store identified by a DNS domain name. The API allows you to retrieve information for a domain based on its name, by searching for domains that match certain criteria or by exporting all domains.
The attributes of the Domain object are documented below.
The average price of products sold on the Domain. Values in the minor unit of the Domain's currency (e.g., cents of USD).
The average price of products sold on the Domain. Formatted in the store's currency. (e.g., $9.75)
The average price of products (converted to USD) sold on the Domain. Values in the cents of USD.
The average weight (in grams) of products sold on the Domain. Products that do not have a price (ie. free) are not included in the calculation.
A list of contact information available for the Domain. This includes email addresses, phone numbers and social media accounts. The following attributes are included:
- value: the contact information (email address, phone number or url to social network handle)
- source: relative url of the page that the contact information was found
- type: the type of contact information (email, phone, twitter, facebook, facebookgroup, instagram, pinterest, tiktok, yelp, youtube, snapchat, linkedin)
The following attributes are available for Twitter, Pinterest, TikTok and YouTube:
- followers: number of followers
- followers_30d: change in number of followers over last 30 days
- followers_90d: change in number of followers over last 90 days
The number of employees.
The estimated total monthly page views for the Domain.
The estimated total monthly sales for the merchant. Values in cents of USD.
The estimated total yearly sales for the merchant. Values in cents of USD.
The estimated total monthly visits for the Domain.
The date at which the Domain last changed ecommerce platforms (if any). Note: Data not available for Domains that changed ecommerce platforms prior to October 2019.
The name of the pricing plan that the Domain was previously on (if any). Note: Data not available for Domains that changed plans prior to July 2019.
The date at which the Domain last changed pricing plans (if any). Note: Data not available for Domains that changed plans prior to July 2019.
The price of the most expensive product sold on the Domain.
Only available for Shopify stores using the regular (non-headless) frontend.
The price of the most expensive product (converted to USD) sold on the Domain. Values in the cents of USD.
The maximum weight (in grams) of products sold on the Domain. Products that do not have a price (ie. free) are not included in the calculation.
The price of the cheapest product sold on the Domain.
Only available for Shopify stores using the regular (non-headless) frontend.
The price of the cheapest product (converted to USD) sold on the Domain. Values in the cents of USD.
The minimum weight (in grams) of products sold on the Domain. Products that do not have a price (ie. free) are not included in the calculation.
Provides the product title, handle, product ID and published_at date of the newest product sold on the store. Only available for Shopify stores using the standard front-end. Data is updated weekly.
Must be requested explicitly using the fields request option.
The number of products sold by the Domain.
Product counts are precise for standard Shopify stores. For all other stores, product counts are an estimate.
The number of product images added in the last 30 days.
Only available for Shopify stores using the regular (non-headless) frontend.
The number of product images added in the last 90 days.
Only available for Shopify stores using the regular (non-headless) frontend.
The number of product images added in the last 365 days.
Only available for Shopify stores using the regular (non-headless) frontend.
- Active
- Inactive
- Password Protected
- Redirect
- Dropshipper
- Print on Demand
- Trending on Pinterest
- Trending on TikTok
- Trending on Twitter
- Trending on YouTube
- Dropping on Pinterest
- Dropping on TikTok
- Dropping on Twitter
- Dropping on YouTube
- name
- description
- name
- style (an estimate of the theme style in use based on HTML similarity with theme store demo)
- cost (in cents of USD, only present if theme is sold in Shopify Theme Store and is not free)
- vendor
- version (for some themes only)
The number of distinct variants across all products sold by the Domain.
Only available for Shopify stores using the regular (non-headless) frontend.
The number of distinct vendors of products sold by the Domain.
Vendor counts are only available for Shopify stores.
Retrieve a Domain by Name
Retrieves the details of a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Request Options
For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.stanley1913.com'
Example Response
{
"domain": {
"theme": {
"name": "8.23 eos sale",
"style": "Unknown",
"vendor": "Unknown",
"version": "8.0.0-rc"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.stanley1913.com",
"city": "Seattle",
"last_updated_at": "2024-09-04T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.stanley1913.com/pages/contact",
"country_code": "US",
"currency_code": "USD",
"title": "Stanley Drinkware \u0026 Gear | Bottles, Tumblers, Growlers \u0026 More – Stanley 1913",
"store_locator_page": "https://www.stanley1913.com/pages/store-locator",
"administrative_area_level_1": "Washington",
"state": "Active",
"icon": "https://www.stanley1913.com/cdn/shop/files/favicon.png?crop=center\u0026height=32\u0026v=1685589284\u0026width=32",
"brand_advocate_page": "https://www.stanley1913.com/pages/affiliate-program",
"faq_page": "https://www.stanley1913.com/pages/faq",
"returns_page": "https://www.stanley1913.com/apps/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://www.stanley1913.com/pages/about-stanley",
"platform_domain": "stanley-pmi.myshopify.com",
"last_plan_change_at": "2020-09-06T00:00:00",
"platform": "shopify",
"location": "Seattle, WA, USA",
"og_image": "https://www.stanley1913.com/cdn/shop/files/Stanley_Horizontal_x320_b3ec2ef4-fa76-454a-b900-c4055137902d.webp?height=628\u0026pad_color=fff\u0026v=1706751331\u0026width=1200",
"max_product_published_at": "2024-09-03T00:00:00",
"merchant_name": "Stanley 1913",
"avg_price_formatted": "$40.21",
"warranty_page": "https://www.stanley1913.com/pages/product-warranty",
"created_at": "2020-09-04T00:00:00",
"name": "www.stanley1913.com",
"description": "Stanley PMI Online Store | Offers an assortment of Vacuum Bottles, Mugs, thermoses, Cookware and more!",
"contact_info": [
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/StanleyBrand"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/stanley_brand"
},
{
"description": "Since 1913, we have been fueling life\u0026#39;s adventures, delivering quality food and beverage gear that\u0026#39;s Built For Life™.",
"followers": 15500,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/StanleyBottle"
},
{
"description": "Fueling life's adventures since 1913. #BuiltforLife",
"followers": 1200000,
"likes": 12800000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@stanleybrand"
},
{
"source": "/pages/privacy-policy",
"type": "phone",
"value": "(206) 557-6270"
},
{
"type": "linkedin",
"value": "http://www.linkedin.com/company/stanley-1913"
}
],
"aliases": [
"stanleypicnic.com"
],
"apps": [
{
"installed_at": "2022-07-26T22:47:49Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/address-validator",
"state": "Active",
"description": "Use shipping address validation to save money by reducing failed deliveries and returned packages",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/47694bcc580db734557159405f8a95e2/icon/CNboqZD-vYgDEAE=.png",
"name": "Address Validator Plus",
"token": "address-validator",
"platform": "shopify",
"vendor_name": "RoboTurk",
"vendor_url": "https://apps.shopify.com/partners/developer-dcf4b0d01a819470",
"vendor_email": "support@roboturk.co",
"vendor_website": "https://addressvalidator.com/",
"vendor_address": "116 Huntington Ave, 15th Floor, Boston, MA, 02116, US",
"id": "1.address-validator",
"created_at": "2017-01-04T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"shipping",
"shipping solutions - other"
],
"integrates_with": [
"Checkout",
"ReCharge"
],
"review_count": 221,
"installs": 1622,
"instp": 0.0006809260930710942,
"installs_30d": -74,
"installs_90d": -5,
"reviews_90d": 5
},
{
"installed_at": "2023-08-03T20:29:45Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/easylocation",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Geolocation redirects customers by location, country block \u0026 country redirect, and markets redirects",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/3800ed46dc7c5198315273a56b432446/icon/CP_6uPKb_v0CEAE=.png",
"name": "Geolocation Redirects Geo:Pro",
"token": "easylocation",
"platform": "shopify",
"vendor_name": "GeoPro Labs Inc",
"vendor_url": "https://apps.shopify.com/partners/geopro",
"vendor_email": "hello@geoproapp.com",
"vendor_website": "https://geoproapp.com",
"vendor_address": "2064 Esplanade, Victoria, BC, V8R5H2, CA",
"id": "1.easylocation",
"created_at": "2017-08-30T00:00:00",
"plans": [
{
"name": "Development Stores",
"monthly_cost": "Free"
},
{
"name": "PREMIUM PLAN",
"monthly_cost": "$7.99/month",
"monthly_cost_cents": 799
}
],
"categories": [
"geolocation",
"internationalization - other"
],
"review_count": 61,
"installs": 4674,
"instp": 0.001962175437123486,
"installs_30d": 34,
"installs_90d": 115,
"reviews_90d": 2
},
{
"installed_at": "2020-09-06T09:57:34Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/foursixty",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Create shoppable Instagram, TikTok, and UGC galleries. Boost desire and sales with social proof.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/43b401d6bc9caa05ff0f555ee2643f79/icon/CLS3urz0lu8CEAE=.jpg",
"name": "Foursixty Shoppable Social UGC",
"token": "foursixty",
"platform": "shopify",
"vendor_name": "Foursixty",
"vendor_url": "https://apps.shopify.com/partners/foursixty",
"vendor_email": "helpme@foursixty.com",
"vendor_website": "http://www.foursixty.com/",
"vendor_address": "1800 - 510 West Georgia Street, Vancouver, BC, V6B 0M3, CA",
"id": "1.foursixty",
"created_at": "2014-12-15T00:00:00",
"plans": [
{
"name": "Essential",
"monthly_cost": "$90/month",
"monthly_cost_cents": 9000
},
{
"name": "Complete",
"monthly_cost": "$300/month",
"monthly_cost_cents": 30000
},
{
"name": "Complete Plus",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
}
],
"categories": [
"social proof",
"image gallery"
],
"integrates_with": [
"Checkout",
"Klaviyo",
"Shop Minis",
"Instagram",
"TikTok"
],
"review_count": 180,
"installs": 2550,
"instp": 0.001070506496505111,
"installs_30d": -30,
"installs_90d": -122,
"reviews_90d": 3
},
{
"installed_at": "2020-09-06T09:57:34Z",
"app_store_url": "https://apps.shopify.com/partners/hulk-code",
"state": "Active",
"description": "Your one-stop shop for all your Shopify needs.",
"name": "Hulk Code",
"token": "generic-hulkapps",
"platform": "shopify",
"vendor_name": "Hulk Code, Inc.",
"vendor_url": "https://www.hulkcode.com",
"id": "1.generic-hulkapps",
"created_at": "2018-11-02T00:00:00",
"installs": 16509,
"instp": 0.0069305850003148544,
"installs_30d": -130,
"installs_90d": -468
},
{
"installed_at": "2024-04-23T06:02:43Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/govx-id",
"state": "Active",
"description": "Launch a protected discount offer for military, first responders, nurses \u0026 teachers.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8b8823fab80978bb3499ad4a9423c429/icon/CKX5sKf0lu8CEAE=.jpg",
"name": "GOVX ID Exclusive Discounts",
"token": "govx-id",
"platform": "shopify",
"vendor_name": "GOVX",
"vendor_url": "https://apps.shopify.com/partners/govx1",
"vendor_email": "partnersupport@govx.com",
"vendor_website": "https://www.govxinc.com/",
"vendor_address": "9605 Scranton Road, Suite 650, San Diego, CA, 92121, US",
"id": "1.govx-id",
"created_at": "2019-10-15T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"discounts"
],
"integrates_with": [
"Checkout"
],
"review_count": 244,
"installs": 4244,
"instp": 0.0017816586553598792,
"installs_30d": 65,
"installs_90d": 248,
"reviews_90d": 4
},
{
"installed_at": "2023-09-13T20:40:31Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "Grow faster and more efficiently with email, sms, reviews and more. Powered by your customer data.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5edd9000b933a8fa88c152d1e498531f/icon/CP6B2OOv3PYCEAE=.png",
"name": "Klaviyo: Email Marketing \u0026 SMS",
"token": "klaviyo-email-marketing",
"platform": "shopify",
"vendor_name": "Klaviyo",
"vendor_url": "https://apps.shopify.com/partners/klaviyo",
"vendor_email": "support@klaviyo.com",
"vendor_website": "https://www.klaviyo.com",
"vendor_address": "225 Franklin St, Floor 10, Boston, MA, 02110, US",
"id": "1.klaviyo-email-marketing",
"created_at": "2012-09-20T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "SMS",
"monthly_cost": "$15/month",
"monthly_cost_cents": 1500
},
{
"name": "Email",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Shopify Flow",
"Recharge",
"Aftership",
"Typeform",
"Meta Advertising",
"Gorgias",
"TikTok Advertising"
],
"review_count": 2710,
"installs": 317034,
"instp": 0.1330929241619613,
"installs_30d": 2150,
"installs_90d": 9684,
"reviews_30d": 106,
"reviews_90d": 392
},
{
"installed_at": "2023-09-20T16:18:16Z",
"average_rating": "4.3",
"app_store_url": "https://apps.shopify.com/narvar-returns",
"state": "Active",
"description": "Protect your revenue by transforming refunds into exchanges with our return platform.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/df78c172920390b82b538ceb1244425f/icon/CJ3sx9S5q-8CEAE=.png",
"name": "Narvar Return and Exchange",
"token": "narvar-returns",
"platform": "shopify",
"vendor_name": "Narvar",
"vendor_url": "https://apps.shopify.com/partners/n13",
"vendor_email": "returns.exchanges-support@narvar.com",
"vendor_website": "https://corp.narvar.com/privacy-policy",
"vendor_address": "3 E 3rd Ave, Suite 211, San Mateo, CA, 94401, US",
"id": "1.narvar-returns",
"created_at": "2021-08-31T00:00:00",
"categories": [
"returns and exchanges"
],
"integrates_with": [
"Shopify Flow",
"Shopify POS",
"Checkout",
"Netsuite",
"Klaviyo",
"Gorgias",
"ShipHero",
"Recharge",
"Tapcart"
],
"review_count": 19,
"installs": 384,
"instp": 0.0001612056841795932,
"installs_30d": 5,
"installs_90d": 21
},
{
"installed_at": "2023-09-13T20:40:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/order-limits-minmaxify",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Control Order Quantities with Minimum and Maximum Limits on Your Cart, Products, and Collections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a04c143bd308483d7a0f055ee1be9d64/icon/CLjmhfDv2vACEAE=.png",
"name": "Order Limits ‑ MinMaxify",
"token": "order-limits-minmaxify",
"platform": "shopify",
"vendor_name": "Intillium",
"vendor_url": "https://apps.shopify.com/partners/bitstim",
"vendor_email": "support@minmaxify.com",
"vendor_website": "http://www.minmaxify.com",
"vendor_address": "5 Kingsgate Place, Caledon, ON, L7E5Z5, CA",
"id": "1.order-limits-minmaxify",
"created_at": "2012-10-29T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Premium",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
},
{
"name": "Plus",
"monthly_cost": "$50/month",
"monthly_cost_cents": 5000
}
],
"categories": [
"order limits"
],
"integrates_with": [
"Checkout"
],
"review_count": 241,
"installs": 15191,
"instp": 0.006377280073885939,
"installs_30d": -54,
"installs_90d": -21,
"reviews_30d": 5,
"reviews_90d": 9
},
{
"installed_at": "2022-01-07T00:49:18Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/referralcandy",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "The premier referral marketing partner for growing brands",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/79887e6752b8e806cc8490d1878d7807/icon/CPvByYuN4oMDEAE=.png",
"name": "Referral Candy \u0026 Affiliate",
"token": "referralcandy",
"platform": "shopify",
"vendor_name": "ReferralCandy",
"vendor_url": "https://apps.shopify.com/partners/anafore",
"vendor_email": "support@referralcandy.com",
"vendor_website": "http://www.referralcandy.com/",
"vendor_address": "28 Kovan Road, #01-05, Singapore, 544694, SG",
"id": "1.referralcandy",
"created_at": "2010-09-28T00:00:00",
"plans": [
{
"name": "Premium plan",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "Plus",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
},
{
"name": "Enterprise",
"monthly_cost": "$24,000\n \n \n / year"
}
],
"categories": [
"affiliate programs",
"loyalty and rewards"
],
"integrates_with": [
"Checkout",
"ReCharge",
"Klaviyo",
"Skio",
"Awtomic",
"Appstle",
"Loop"
],
"review_count": 2158,
"installs": 1480,
"instp": 0.0006213135744421822,
"installs_30d": 4,
"installs_90d": -20,
"reviews_30d": 6,
"reviews_90d": 14
},
{
"installed_at": "2023-12-27T11:30:14Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/schema-plus",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Adds full schema (JSON-LD) to your store according to the most up-to-date Google requirements.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/e1548ddee303ba520aa7e5ad46d5083a/icon/CI2q_930lu8CEAE=.png",
"name": "Schema Plus for SEO",
"token": "schema-plus",
"platform": "shopify",
"vendor_name": "SchemaPlus Inc.",
"vendor_url": "https://apps.shopify.com/partners/uppercase-brands",
"vendor_email": "support@schemaplus.io",
"vendor_website": "https://schemaplus.io",
"vendor_address": "187 E 4th Street, #6J, New York, NY, 10009, US",
"id": "1.schema-plus",
"created_at": "2018-11-21T00:00:00",
"plans": [
{
"name": "SchemaPlus Pro",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
}
],
"categories": [
"seo"
],
"integrates_with": [
"Yotpo",
"Judge.me",
"Stamped.io",
"Growave",
"Okendo",
"Product Reviews"
],
"review_count": 456,
"installs": 2093,
"instp": 0.0008786549400726265,
"installs_30d": 75,
"installs_90d": 151,
"reviews_30d": 15,
"reviews_90d": 30
},
{
"installed_at": "2021-05-20T23:34:50Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/shogun",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "Easy to use visual page editor to design blog posts, product pages, landing pages \u0026 theme sections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0ca2c1526ec07b9f52021bd42651b1fd/icon/CO2wi8_0-4IDEAE=.jpeg",
"name": "Shogun ‑ Landing Page Builder",
"token": "shogun",
"platform": "shopify",
"vendor_name": "Shogun Labs, Inc.",
"vendor_url": "https://apps.shopify.com/partners/shogun",
"vendor_email": "support@getshogun.com",
"vendor_website": "https://getshogun.com",
"vendor_address": "340 S Lemon Ave #1085, Walnut, CA, 91789, US",
"id": "1.shogun",
"created_at": "2015-09-21T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$249/month",
"monthly_cost_cents": 24900
},
{
"name": "Advanced",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"page builder",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout",
"Google Analytics",
"Adobe Typekit",
"YouTube",
"Klaviyo",
"Yotpo",
"Instagram"
],
"review_count": 3289,
"installs": 45012,
"instp": 0.01889632879242669,
"installs_30d": 6817,
"installs_90d": 6281,
"reviews_90d": 4
},
{
"installed_at": "2023-03-30T17:54:39Z",
"average_rating": "4.1",
"app_store_url": "https://apps.shopify.com/signifyd",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Conversions with Guaranteed Protection Against Fraud and Non-fraud Chargebacks",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/adb1d4e7a8537b18730ab69339a13ad4/icon/CLX1-6b0lu8CEAE=.png",
"name": "Signifyd",
"token": "signifyd",
"platform": "shopify",
"vendor_name": "Signifyd",
"vendor_url": "https://apps.shopify.com/partners/signifyd",
"vendor_email": "support@signifyd.com",
"vendor_website": "https://developer.signifyd.com/",
"vendor_address": "99 South Almaden Ave, Suite 400, San Jose, CA, 95113, US",
"id": "1.signifyd",
"created_at": "2013-06-21T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"fraud"
],
"integrates_with": [
"Recharge",
"Carthook",
"PayPal",
"Stripe Early Fraud Warnings",
"Shop Pay"
],
"review_count": 161,
"installs": 3207,
"instp": 0.001346319346781134,
"installs_30d": -5,
"installs_90d": 6
},
{
"installed_at": "2024-06-11T18:20:59Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/swell",
"state": "Active",
"description": "Build a customizable, retention-driving loyalty program that offers more than just rewards.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f693caaaf4c437600611eb42fc8da5d3/icon/CI_cy9bMiocDEAE=.png",
"name": "Yotpo: Loyalty \u0026 Rewards",
"token": "swell",
"platform": "shopify",
"vendor_name": "Yotpo - L\u0026R",
"vendor_url": "https://apps.shopify.com/partners/swell-rewards",
"vendor_email": "loyaltyrefferals_support@yotpo.com",
"vendor_website": "https://www.yotpo.com/platform/loyalty/",
"vendor_address": "400 Lafayette St, Yotpo Ltd, New York, NY, 10003, US",
"id": "1.swell",
"created_at": "2015-07-28T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Gold",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"loyalty and rewards"
],
"integrates_with": [
"Shopify Flow",
"Shopify POS",
"Checkout",
"Yotpo",
"Klaviyo",
"ReCharge",
"Gorgias",
"SMSbump"
],
"review_count": 2549,
"installs": 13894,
"instp": 0.005832791083310594,
"installs_30d": 179,
"installs_90d": 519,
"reviews_30d": 21,
"reviews_90d": 39
}
],
"categories": [
"/Home \u0026 Garden/Kitchen \u0026 Dining/Cookware \u0026 Diningware",
"/Food \u0026 Drink"
],
"technologies": [
{
"installed_at": "2023-06-22T19:17:31Z",
"name": "Address Validator",
"description": "Say goodbye to invalid addresses and redelivery fees! Get started in seconds without coding.",
"vendor_url": "https://addressvalidator.com",
"icon_url": "https://storeleads.app/img/tech/addressvalidator.png",
"installs": 1654
},
{
"installed_at": "2020-11-10T20:02:34Z",
"name": "Apple Pay",
"description": "Make contactless, secure purchases in stores, in apps, and on the web.",
"vendor_url": "https://www.apple.com/apple-pay",
"icon_url": "https://storeleads.app/img/tech/apple_pay.png",
"installs": 1461848
},
{
"installed_at": "2024-02-16T02:20:22Z",
"name": "Arrive",
"description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
"vendor_url": "https://tryarrive.com",
"icon_url": "https://storeleads.app/img/tech/arrive.png",
"installs": 2349630
},
{
"installed_at": "2021-09-14T23:21:03Z",
"name": "AvantLink",
"description": "AvantLink's approach to affiliate marketing is simple, grow your business through quality partnerships.",
"vendor_url": "https://www.avantlink.com",
"icon_url": "https://storeleads.app/img/tech/avantlink.png",
"installs": 2735
},
{
"installed_at": "2023-10-31T23:55:36Z",
"name": "Bing Ads",
"description": "Bing Ads conversion tracking collects data that allows you to track conversion goals and target audiences with remarketing lists.",
"vendor_url": "https://advertise.bingads.microsoft.com/en-ca/solutions/audience-targeting/universal-event-tracking",
"icon_url": "https://storeleads.app/img/tech/bingads.png",
"installs": 154861
},
{
"installed_at": "2023-10-31T23:55:36Z",
"name": "Cloudflare",
"description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 4334934
},
{
"installed_at": "2021-06-08T15:55:16Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 3634723
},
{
"installed_at": "2024-07-23T06:48:46Z",
"name": "Convert",
"description": "Optimize for Better Site Experiences.",
"vendor_url": "https://www.convert.com",
"icon_url": "https://storeleads.app/img/tech/convert.png",
"installs": 2800
},
{
"installed_at": "2020-09-29T17:58:04Z",
"name": "Criteo",
"description": "Power ad campaigns from browsing and transaction data from billions of consumers.",
"vendor_url": "https://www.criteo.com",
"icon_url": "https://storeleads.app/img/tech/criteo.png",
"installs": 43869
},
{
"installed_at": "2020-09-16T16:22:36Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"vendor_url": "https://www.facebook.com/business/learn/facebook-ads-pixel",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2714483
},
{
"installed_at": "2022-07-04T04:02:06Z",
"name": "Freshchat",
"description": "Freshchat is a modern messaging software built for teams who want to ace customer conversations—marketing, sales, or support.",
"vendor_url": "https://www.freshworks.com/live-chat-software/",
"icon_url": "https://storeleads.app/img/tech/freshchat.png",
"installs": 49514
},
{
"installed_at": "2021-10-08T21:51:38Z",
"name": "Freshdesk",
"description": "Freshdesk offers Omnichannel, AI-driven or Self Service solution for customer service.",
"vendor_url": "https://freshdesk.com/",
"icon_url": "https://storeleads.app/img/tech/freshdesk.png",
"installs": 20996
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"vendor_url": "https://ads.google.com/",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 2930755
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"vendor_url": "https://www.google.com/adsense/start",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3986298
},
{
"installed_at": "2020-11-04T12:55:00Z",
"name": "Google Pay",
"description": "Google Pay is the fast, simple way to pay online, in stores and more.",
"vendor_url": "https://pay.google.com",
"icon_url": "https://storeleads.app/img/tech/googlepay.png",
"installs": 1275516
},
{
"installed_at": "2020-09-06T09:57:34Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"vendor_url": "https://tagmanager.google.com/",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 4220088
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Hotjar",
"description": "Hotjar lets you see how visitors are really using your website, collect user feedback and turn more visitors into customers.",
"vendor_url": "https://www.hotjar.com",
"icon_url": "https://storeleads.app/img/tech/hotjar.png",
"installs": 343333
},
{
"installed_at": "2023-09-13T20:40:31Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"vendor_url": "https://www.klaviyo.com/",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"installs": 427087
},
{
"installed_at": "2023-09-20T16:18:16Z",
"name": "Narvar",
"description": "Narvar helps retailers champion their customers at every step of the journey.",
"vendor_url": "https://corp.narvar.com",
"icon_url": "https://storeleads.app/img/tech/narvar.png",
"installs": 971
},
{
"installed_at": "2024-07-16T22:39:36Z",
"name": "PayPal",
"description": "PayPal is an online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods like checks and money orders.",
"vendor_url": "https://developer.paypal.com/docs/checkout",
"icon_url": "https://storeleads.app/img/tech/paypal.png",
"installs": 2182472
},
{
"installed_at": "2022-02-14T23:05:39Z",
"name": "PayPal Express Checkout",
"description": "Add PayPal to your existing checkout.",
"vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
"icon_url": "https://storeleads.app/img/tech/paypal.png",
"installs": 1383433
},
{
"installed_at": "2022-07-20T02:07:43Z",
"name": "Pinterest Pixel",
"description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
"vendor_url": "https://help.pinterest.com/en/business/article/track-conversions-with-pinterest-tag",
"icon_url": "https://storeleads.app/img/tech/pinterest.png",
"installs": 471512
},
{
"installed_at": "2022-01-07T00:49:18Z",
"name": "ReferralCandy",
"description": "Reward your customers for referrals and watch the sales and shares roll in.",
"vendor_url": "https://www.referralcandy.com",
"icon_url": "https://storeleads.app/img/tech/referralcandy.png",
"installs": 1835
},
{
"installed_at": "2021-05-20T23:34:50Z",
"name": "Shogun",
"description": "Build and optimize your pages with Shogun, the most powerful page building platform for eCommerce teams and agencies.",
"vendor_url": "http://getshogun.com",
"icon_url": "https://storeleads.app/img/tech/shogun.png",
"installs": 46427
},
{
"installed_at": "2021-01-02T00:51:15Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"vendor_url": "https://shop.app/what-shop-does",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"installs": 1268119
},
{
"installed_at": "2023-03-30T17:54:39Z",
"name": "Signifyd",
"description": "Best in class chargeback guarantee protection",
"vendor_url": "https://www.signifyd.com",
"icon_url": "https://storeleads.app/img/tech/signifyd.png",
"installs": 9672
},
{
"installed_at": "2022-03-23T10:05:08Z",
"name": "Steelhouse",
"description": "Find new customers with highly-targeted, conversion-optimized Connected TV campaigns.",
"vendor_url": "https://mountain.com",
"icon_url": "https://storeleads.app/img/tech/steelhouse.png",
"installs": 1880
},
{
"installed_at": "2024-06-11T18:20:59Z",
"name": "SwellRewards",
"description": "Boost lifetime value and increase customer acquisition with Swell’s on-brand loyalty and referral solutions.",
"vendor_url": "https://www.swellrewards.com",
"icon_url": "https://storeleads.app/img/tech/swellrewards.png",
"installs": 14141
},
{
"installed_at": "2021-12-08T06:07:05Z",
"name": "TikTok Pixel",
"description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
"vendor_url": "https://www.tiktok.com/business/en",
"icon_url": "https://storeleads.app/img/tech/tiktok.png",
"installs": 569652
},
{
"installed_at": "2021-03-30T08:10:58Z",
"name": "TurnTo",
"description": "Next generation customer content.",
"vendor_url": "https://www.turntonetworks.com",
"icon_url": "https://storeleads.app/img/tech/turnto.png",
"installs": 287
}
],
"collections": [
"food-jars-storage",
"mugs-cups",
"new-arrivals",
"stanley-create-custom",
"shop-all",
"best-selling-products",
"camping-cooking-gear",
"coffee-tea",
"iceflow",
"the-all-day-slim-bottle",
"stanley-clothing",
"water-bottles",
"accessories",
"coolers",
"soft-cooler-bags-collection",
"the-heatwave-collection",
"back-to-school",
"originals",
"vacuum-bottles",
"all",
"barware",
"classic-series",
"stanley-x-loveshackfancy",
"gifts-for-grads",
"pumpkin-spice",
"travel",
"tumblers",
"adventure-quencher-travel-tumblers",
"barbie-x-stanley",
"best-sellers",
"coolers-jugs",
"water-hydration"
],
"cluster_domains": [
"www.stanley1913.com",
"www.stanley1913.com.br",
"www.stanley1913.ar",
"www.stanley1913.cl",
"stanley1913.mx",
"stanley1913.co",
"stanley1913.uy",
"stanley1913.ae",
"stanley1913.bo",
"stanley1913.gt",
"www.stanley1913.pe",
"stanley1913.com.py",
"www.stanley1913.cr",
"www.stanley1913.us.com",
"stanley1913.com.vn",
"ca.stanley1913.com",
"uk.stanley1913.com",
"jp.stanley1913.com",
"au.stanley1913.com",
"nz.stanley1913.com",
"kr.stanley1913.com",
"tr.stanley1913.com"
],
"features": [
"Shopify POS",
"Brand Advocate Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"Returns Page",
"FAQ Page",
"Store Locator Page",
"Warranty Page",
"Has Blog"
],
"ships_to_countries": [
"United States"
],
"rank_percentile": 0.0009,
"rank": 124,
"latitude": 47.6062095,
"longitude": -122.3320708,
"estimated_page_views": 100673733,
"estimated_sales": 8941309201,
"estimated_sales_yearly": 107295710412,
"estimated_visits": 28159282,
"product_images": 4248,
"product_images_created_365": 4045,
"product_images_created_90": 324,
"product_images_created_30": 46,
"employee_count": 583,
"cc_rank": 125158,
"cc_centrality": 89917,
"product_count": 340,
"max_price": 17000,
"max_price_usd": 17000,
"max_weight": 6178,
"monthly_app_spend": 16198,
"min_price": 800,
"min_price_usd": 800,
"min_weight": 30,
"variant_count": 1380,
"vendor_count": 2,
"avg_price": 4021,
"avg_price_usd": 4021,
"avg_weight": 616,
"platform_rank": 2
}
}
Bulk Retrieve Domains By Name
Retrieves the details for up to 100 Domains by name. Name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Request Options
For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"domains": ["www.stanley1913.com"]}' 'https://storeleads.app/json/api/v1/all/domain/bulk'
Example Response
{
"domains": [
{
"theme": {
"name": "8.23 eos sale",
"style": "Unknown",
"vendor": "Unknown",
"version": "8.0.0-rc"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.stanley1913.com",
"city": "Seattle",
"last_updated_at": "2024-09-04T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.stanley1913.com/pages/contact",
"country_code": "US",
"currency_code": "USD",
"title": "Stanley Drinkware \u0026 Gear | Bottles, Tumblers, Growlers \u0026 More – Stanley 1913",
"store_locator_page": "https://www.stanley1913.com/pages/store-locator",
"administrative_area_level_1": "Washington",
"state": "Active",
"icon": "https://www.stanley1913.com/cdn/shop/files/favicon.png?crop=center\u0026height=32\u0026v=1685589284\u0026width=32",
"brand_advocate_page": "https://www.stanley1913.com/pages/affiliate-program",
"faq_page": "https://www.stanley1913.com/pages/faq",
"returns_page": "https://www.stanley1913.com/apps/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://www.stanley1913.com/pages/about-stanley",
"platform_domain": "stanley-pmi.myshopify.com",
"last_plan_change_at": "2020-09-06T00:00:00",
"platform": "shopify",
"location": "Seattle, WA, USA",
"og_image": "https://www.stanley1913.com/cdn/shop/files/Stanley_Horizontal_x320_b3ec2ef4-fa76-454a-b900-c4055137902d.webp?height=628\u0026pad_color=fff\u0026v=1706751331\u0026width=1200",
"max_product_published_at": "2024-09-03T00:00:00",
"merchant_name": "Stanley 1913",
"avg_price_formatted": "$40.21",
"warranty_page": "https://www.stanley1913.com/pages/product-warranty",
"created_at": "2020-09-04T00:00:00",
"name": "www.stanley1913.com",
"description": "Stanley PMI Online Store | Offers an assortment of Vacuum Bottles, Mugs, thermoses, Cookware and more!",
"contact_info": [
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/StanleyBrand"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/stanley_brand"
},
{
"description": "Since 1913, we have been fueling life\u0026#39;s adventures, delivering quality food and beverage gear that\u0026#39;s Built For Life™.",
"followers": 15500,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/StanleyBottle"
},
{
"description": "Fueling life's adventures since 1913. #BuiltforLife",
"followers": 1200000,
"likes": 12800000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@stanleybrand"
},
{
"source": "/pages/privacy-policy",
"type": "phone",
"value": "(206) 557-6270"
},
{
"type": "linkedin",
"value": "http://www.linkedin.com/company/stanley-1913"
}
],
"aliases": [
"stanleypicnic.com"
],
"apps": [
{
"installed_at": "2022-07-26T22:47:49Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/address-validator",
"state": "Active",
"description": "Use shipping address validation to save money by reducing failed deliveries and returned packages",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/47694bcc580db734557159405f8a95e2/icon/CNboqZD-vYgDEAE=.png",
"name": "Address Validator Plus",
"token": "address-validator",
"platform": "shopify",
"vendor_name": "RoboTurk",
"vendor_url": "https://apps.shopify.com/partners/developer-dcf4b0d01a819470",
"vendor_email": "support@roboturk.co",
"vendor_website": "https://addressvalidator.com/",
"vendor_address": "116 Huntington Ave, 15th Floor, Boston, MA, 02116, US",
"id": "1.address-validator",
"created_at": "2017-01-04T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"shipping",
"shipping solutions - other"
],
"integrates_with": [
"Checkout",
"ReCharge"
],
"review_count": 221,
"installs": 1622,
"instp": 0.0006809260930710942,
"installs_30d": -74,
"installs_90d": -5,
"reviews_90d": 5
},
{
"installed_at": "2023-08-03T20:29:45Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/easylocation",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Geolocation redirects customers by location, country block \u0026 country redirect, and markets redirects",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/3800ed46dc7c5198315273a56b432446/icon/CP_6uPKb_v0CEAE=.png",
"name": "Geolocation Redirects Geo:Pro",
"token": "easylocation",
"platform": "shopify",
"vendor_name": "GeoPro Labs Inc",
"vendor_url": "https://apps.shopify.com/partners/geopro",
"vendor_email": "hello@geoproapp.com",
"vendor_website": "https://geoproapp.com",
"vendor_address": "2064 Esplanade, Victoria, BC, V8R5H2, CA",
"id": "1.easylocation",
"created_at": "2017-08-30T00:00:00",
"plans": [
{
"name": "Development Stores",
"monthly_cost": "Free"
},
{
"name": "PREMIUM PLAN",
"monthly_cost": "$7.99/month",
"monthly_cost_cents": 799
}
],
"categories": [
"geolocation",
"internationalization - other"
],
"review_count": 61,
"installs": 4674,
"instp": 0.001962175437123486,
"installs_30d": 34,
"installs_90d": 115,
"reviews_90d": 2
},
{
"installed_at": "2020-09-06T09:57:34Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/foursixty",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Create shoppable Instagram, TikTok, and UGC galleries. Boost desire and sales with social proof.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/43b401d6bc9caa05ff0f555ee2643f79/icon/CLS3urz0lu8CEAE=.jpg",
"name": "Foursixty Shoppable Social UGC",
"token": "foursixty",
"platform": "shopify",
"vendor_name": "Foursixty",
"vendor_url": "https://apps.shopify.com/partners/foursixty",
"vendor_email": "helpme@foursixty.com",
"vendor_website": "http://www.foursixty.com/",
"vendor_address": "1800 - 510 West Georgia Street, Vancouver, BC, V6B 0M3, CA",
"id": "1.foursixty",
"created_at": "2014-12-15T00:00:00",
"plans": [
{
"name": "Essential",
"monthly_cost": "$90/month",
"monthly_cost_cents": 9000
},
{
"name": "Complete",
"monthly_cost": "$300/month",
"monthly_cost_cents": 30000
},
{
"name": "Complete Plus",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
}
],
"categories": [
"social proof",
"image gallery"
],
"integrates_with": [
"Checkout",
"Klaviyo",
"Shop Minis",
"Instagram",
"TikTok"
],
"review_count": 180,
"installs": 2550,
"instp": 0.001070506496505111,
"installs_30d": -30,
"installs_90d": -122,
"reviews_90d": 3
},
{
"installed_at": "2020-09-06T09:57:34Z",
"app_store_url": "https://apps.shopify.com/partners/hulk-code",
"state": "Active",
"description": "Your one-stop shop for all your Shopify needs.",
"name": "Hulk Code",
"token": "generic-hulkapps",
"platform": "shopify",
"vendor_name": "Hulk Code, Inc.",
"vendor_url": "https://www.hulkcode.com",
"id": "1.generic-hulkapps",
"created_at": "2018-11-02T00:00:00",
"installs": 16509,
"instp": 0.0069305850003148544,
"installs_30d": -130,
"installs_90d": -468
},
{
"installed_at": "2024-04-23T06:02:43Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/govx-id",
"state": "Active",
"description": "Launch a protected discount offer for military, first responders, nurses \u0026 teachers.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8b8823fab80978bb3499ad4a9423c429/icon/CKX5sKf0lu8CEAE=.jpg",
"name": "GOVX ID Exclusive Discounts",
"token": "govx-id",
"platform": "shopify",
"vendor_name": "GOVX",
"vendor_url": "https://apps.shopify.com/partners/govx1",
"vendor_email": "partnersupport@govx.com",
"vendor_website": "https://www.govxinc.com/",
"vendor_address": "9605 Scranton Road, Suite 650, San Diego, CA, 92121, US",
"id": "1.govx-id",
"created_at": "2019-10-15T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"discounts"
],
"integrates_with": [
"Checkout"
],
"review_count": 244,
"installs": 4244,
"instp": 0.0017816586553598792,
"installs_30d": 65,
"installs_90d": 248,
"reviews_90d": 4
},
{
"installed_at": "2023-09-13T20:40:31Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "Grow faster and more efficiently with email, sms, reviews and more. Powered by your customer data.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5edd9000b933a8fa88c152d1e498531f/icon/CP6B2OOv3PYCEAE=.png",
"name": "Klaviyo: Email Marketing \u0026 SMS",
"token": "klaviyo-email-marketing",
"platform": "shopify",
"vendor_name": "Klaviyo",
"vendor_url": "https://apps.shopify.com/partners/klaviyo",
"vendor_email": "support@klaviyo.com",
"vendor_website": "https://www.klaviyo.com",
"vendor_address": "225 Franklin St, Floor 10, Boston, MA, 02110, US",
"id": "1.klaviyo-email-marketing",
"created_at": "2012-09-20T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "SMS",
"monthly_cost": "$15/month",
"monthly_cost_cents": 1500
},
{
"name": "Email",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Shopify Flow",
"Recharge",
"Aftership",
"Typeform",
"Meta Advertising",
"Gorgias",
"TikTok Advertising"
],
"review_count": 2710,
"installs": 317034,
"instp": 0.1330929241619613,
"installs_30d": 2150,
"installs_90d": 9684,
"reviews_30d": 106,
"reviews_90d": 392
},
{
"installed_at": "2023-09-20T16:18:16Z",
"average_rating": "4.3",
"app_store_url": "https://apps.shopify.com/narvar-returns",
"state": "Active",
"description": "Protect your revenue by transforming refunds into exchanges with our return platform.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/df78c172920390b82b538ceb1244425f/icon/CJ3sx9S5q-8CEAE=.png",
"name": "Narvar Return and Exchange",
"token": "narvar-returns",
"platform": "shopify",
"vendor_name": "Narvar",
"vendor_url": "https://apps.shopify.com/partners/n13",
"vendor_email": "returns.exchanges-support@narvar.com",
"vendor_website": "https://corp.narvar.com/privacy-policy",
"vendor_address": "3 E 3rd Ave, Suite 211, San Mateo, CA, 94401, US",
"id": "1.narvar-returns",
"created_at": "2021-08-31T00:00:00",
"categories": [
"returns and exchanges"
],
"integrates_with": [
"Shopify Flow",
"Shopify POS",
"Checkout",
"Netsuite",
"Klaviyo",
"Gorgias",
"ShipHero",
"Recharge",
"Tapcart"
],
"review_count": 19,
"installs": 384,
"instp": 0.0001612056841795932,
"installs_30d": 5,
"installs_90d": 21
},
{
"installed_at": "2023-09-13T20:40:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/order-limits-minmaxify",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Control Order Quantities with Minimum and Maximum Limits on Your Cart, Products, and Collections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a04c143bd308483d7a0f055ee1be9d64/icon/CLjmhfDv2vACEAE=.png",
"name": "Order Limits ‑ MinMaxify",
"token": "order-limits-minmaxify",
"platform": "shopify",
"vendor_name": "Intillium",
"vendor_url": "https://apps.shopify.com/partners/bitstim",
"vendor_email": "support@minmaxify.com",
"vendor_website": "http://www.minmaxify.com",
"vendor_address": "5 Kingsgate Place, Caledon, ON, L7E5Z5, CA",
"id": "1.order-limits-minmaxify",
"created_at": "2012-10-29T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Premium",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
},
{
"name": "Plus",
"monthly_cost": "$50/month",
"monthly_cost_cents": 5000
}
],
"categories": [
"order limits"
],
"integrates_with": [
"Checkout"
],
"review_count": 241,
"installs": 15191,
"instp": 0.006377280073885939,
"installs_30d": -54,
"installs_90d": -21,
"reviews_30d": 5,
"reviews_90d": 9
},
{
"installed_at": "2022-01-07T00:49:18Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/referralcandy",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "The premier referral marketing partner for growing brands",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/79887e6752b8e806cc8490d1878d7807/icon/CPvByYuN4oMDEAE=.png",
"name": "Referral Candy \u0026 Affiliate",
"token": "referralcandy",
"platform": "shopify",
"vendor_name": "ReferralCandy",
"vendor_url": "https://apps.shopify.com/partners/anafore",
"vendor_email": "support@referralcandy.com",
"vendor_website": "http://www.referralcandy.com/",
"vendor_address": "28 Kovan Road, #01-05, Singapore, 544694, SG",
"id": "1.referralcandy",
"created_at": "2010-09-28T00:00:00",
"plans": [
{
"name": "Premium plan",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "Plus",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
},
{
"name": "Enterprise",
"monthly_cost": "$24,000\n \n \n / year"
}
],
"categories": [
"affiliate programs",
"loyalty and rewards"
],
"integrates_with": [
"Checkout",
"ReCharge",
"Klaviyo",
"Skio",
"Awtomic",
"Appstle",
"Loop"
],
"review_count": 2158,
"installs": 1480,
"instp": 0.0006213135744421822,
"installs_30d": 4,
"installs_90d": -20,
"reviews_30d": 6,
"reviews_90d": 14
},
{
"installed_at": "2023-12-27T11:30:14Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/schema-plus",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Adds full schema (JSON-LD) to your store according to the most up-to-date Google requirements.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/e1548ddee303ba520aa7e5ad46d5083a/icon/CI2q_930lu8CEAE=.png",
"name": "Schema Plus for SEO",
"token": "schema-plus",
"platform": "shopify",
"vendor_name": "SchemaPlus Inc.",
"vendor_url": "https://apps.shopify.com/partners/uppercase-brands",
"vendor_email": "support@schemaplus.io",
"vendor_website": "https://schemaplus.io",
"vendor_address": "187 E 4th Street, #6J, New York, NY, 10009, US",
"id": "1.schema-plus",
"created_at": "2018-11-21T00:00:00",
"plans": [
{
"name": "SchemaPlus Pro",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
}
],
"categories": [
"seo"
],
"integrates_with": [
"Yotpo",
"Judge.me",
"Stamped.io",
"Growave",
"Okendo",
"Product Reviews"
],
"review_count": 456,
"installs": 2093,
"instp": 0.0008786549400726265,
"installs_30d": 75,
"installs_90d": 151,
"reviews_30d": 15,
"reviews_90d": 30
},
{
"installed_at": "2021-05-20T23:34:50Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/shogun",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "Easy to use visual page editor to design blog posts, product pages, landing pages \u0026 theme sections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0ca2c1526ec07b9f52021bd42651b1fd/icon/CO2wi8_0-4IDEAE=.jpeg",
"name": "Shogun ‑ Landing Page Builder",
"token": "shogun",
"platform": "shopify",
"vendor_name": "Shogun Labs, Inc.",
"vendor_url": "https://apps.shopify.com/partners/shogun",
"vendor_email": "support@getshogun.com",
"vendor_website": "https://getshogun.com",
"vendor_address": "340 S Lemon Ave #1085, Walnut, CA, 91789, US",
"id": "1.shogun",
"created_at": "2015-09-21T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$249/month",
"monthly_cost_cents": 24900
},
{
"name": "Advanced",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"page builder",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout",
"Google Analytics",
"Adobe Typekit",
"YouTube",
"Klaviyo",
"Yotpo",
"Instagram"
],
"review_count": 3289,
"installs": 45012,
"instp": 0.01889632879242669,
"installs_30d": 6817,
"installs_90d": 6281,
"reviews_90d": 4
},
{
"installed_at": "2023-03-30T17:54:39Z",
"average_rating": "4.1",
"app_store_url": "https://apps.shopify.com/signifyd",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Conversions with Guaranteed Protection Against Fraud and Non-fraud Chargebacks",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/adb1d4e7a8537b18730ab69339a13ad4/icon/CLX1-6b0lu8CEAE=.png",
"name": "Signifyd",
"token": "signifyd",
"platform": "shopify",
"vendor_name": "Signifyd",
"vendor_url": "https://apps.shopify.com/partners/signifyd",
"vendor_email": "support@signifyd.com",
"vendor_website": "https://developer.signifyd.com/",
"vendor_address": "99 South Almaden Ave, Suite 400, San Jose, CA, 95113, US",
"id": "1.signifyd",
"created_at": "2013-06-21T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"fraud"
],
"integrates_with": [
"Recharge",
"Carthook",
"PayPal",
"Stripe Early Fraud Warnings",
"Shop Pay"
],
"review_count": 161,
"installs": 3207,
"instp": 0.001346319346781134,
"installs_30d": -5,
"installs_90d": 6
},
{
"installed_at": "2024-06-11T18:20:59Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/swell",
"state": "Active",
"description": "Build a customizable, retention-driving loyalty program that offers more than just rewards.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f693caaaf4c437600611eb42fc8da5d3/icon/CI_cy9bMiocDEAE=.png",
"name": "Yotpo: Loyalty \u0026 Rewards",
"token": "swell",
"platform": "shopify",
"vendor_name": "Yotpo - L\u0026R",
"vendor_url": "https://apps.shopify.com/partners/swell-rewards",
"vendor_email": "loyaltyrefferals_support@yotpo.com",
"vendor_website": "https://www.yotpo.com/platform/loyalty/",
"vendor_address": "400 Lafayette St, Yotpo Ltd, New York, NY, 10003, US",
"id": "1.swell",
"created_at": "2015-07-28T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Gold",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"loyalty and rewards"
],
"integrates_with": [
"Shopify Flow",
"Shopify POS",
"Checkout",
"Yotpo",
"Klaviyo",
"ReCharge",
"Gorgias",
"SMSbump"
],
"review_count": 2549,
"installs": 13894,
"instp": 0.005832791083310594,
"installs_30d": 179,
"installs_90d": 519,
"reviews_30d": 21,
"reviews_90d": 39
}
],
"categories": [
"/Home \u0026 Garden/Kitchen \u0026 Dining/Cookware \u0026 Diningware",
"/Food \u0026 Drink"
],
"technologies": [
{
"installed_at": "2023-06-22T19:17:31Z",
"name": "Address Validator",
"description": "Say goodbye to invalid addresses and redelivery fees! Get started in seconds without coding.",
"vendor_url": "https://addressvalidator.com",
"icon_url": "https://storeleads.app/img/tech/addressvalidator.png",
"installs": 1654
},
{
"installed_at": "2020-11-10T20:02:34Z",
"name": "Apple Pay",
"description": "Make contactless, secure purchases in stores, in apps, and on the web.",
"vendor_url": "https://www.apple.com/apple-pay",
"icon_url": "https://storeleads.app/img/tech/apple_pay.png",
"installs": 1461848
},
{
"installed_at": "2024-02-16T02:20:22Z",
"name": "Arrive",
"description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
"vendor_url": "https://tryarrive.com",
"icon_url": "https://storeleads.app/img/tech/arrive.png",
"installs": 2349630
},
{
"installed_at": "2021-09-14T23:21:03Z",
"name": "AvantLink",
"description": "AvantLink's approach to affiliate marketing is simple, grow your business through quality partnerships.",
"vendor_url": "https://www.avantlink.com",
"icon_url": "https://storeleads.app/img/tech/avantlink.png",
"installs": 2735
},
{
"installed_at": "2023-10-31T23:55:36Z",
"name": "Bing Ads",
"description": "Bing Ads conversion tracking collects data that allows you to track conversion goals and target audiences with remarketing lists.",
"vendor_url": "https://advertise.bingads.microsoft.com/en-ca/solutions/audience-targeting/universal-event-tracking",
"icon_url": "https://storeleads.app/img/tech/bingads.png",
"installs": 154861
},
{
"installed_at": "2023-10-31T23:55:36Z",
"name": "Cloudflare",
"description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 4334934
},
{
"installed_at": "2021-06-08T15:55:16Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 3634723
},
{
"installed_at": "2024-07-23T06:48:46Z",
"name": "Convert",
"description": "Optimize for Better Site Experiences.",
"vendor_url": "https://www.convert.com",
"icon_url": "https://storeleads.app/img/tech/convert.png",
"installs": 2800
},
{
"installed_at": "2020-09-29T17:58:04Z",
"name": "Criteo",
"description": "Power ad campaigns from browsing and transaction data from billions of consumers.",
"vendor_url": "https://www.criteo.com",
"icon_url": "https://storeleads.app/img/tech/criteo.png",
"installs": 43869
},
{
"installed_at": "2020-09-16T16:22:36Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"vendor_url": "https://www.facebook.com/business/learn/facebook-ads-pixel",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2714483
},
{
"installed_at": "2022-07-04T04:02:06Z",
"name": "Freshchat",
"description": "Freshchat is a modern messaging software built for teams who want to ace customer conversations—marketing, sales, or support.",
"vendor_url": "https://www.freshworks.com/live-chat-software/",
"icon_url": "https://storeleads.app/img/tech/freshchat.png",
"installs": 49514
},
{
"installed_at": "2021-10-08T21:51:38Z",
"name": "Freshdesk",
"description": "Freshdesk offers Omnichannel, AI-driven or Self Service solution for customer service.",
"vendor_url": "https://freshdesk.com/",
"icon_url": "https://storeleads.app/img/tech/freshdesk.png",
"installs": 20996
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"vendor_url": "https://ads.google.com/",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 2930755
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"vendor_url": "https://www.google.com/adsense/start",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3986298
},
{
"installed_at": "2020-11-04T12:55:00Z",
"name": "Google Pay",
"description": "Google Pay is the fast, simple way to pay online, in stores and more.",
"vendor_url": "https://pay.google.com",
"icon_url": "https://storeleads.app/img/tech/googlepay.png",
"installs": 1275516
},
{
"installed_at": "2020-09-06T09:57:34Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"vendor_url": "https://tagmanager.google.com/",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 4220088
},
{
"installed_at": "2022-02-05T11:22:41Z",
"name": "Hotjar",
"description": "Hotjar lets you see how visitors are really using your website, collect user feedback and turn more visitors into customers.",
"vendor_url": "https://www.hotjar.com",
"icon_url": "https://storeleads.app/img/tech/hotjar.png",
"installs": 343333
},
{
"installed_at": "2023-09-13T20:40:31Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"vendor_url": "https://www.klaviyo.com/",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"installs": 427087
},
{
"installed_at": "2023-09-20T16:18:16Z",
"name": "Narvar",
"description": "Narvar helps retailers champion their customers at every step of the journey.",
"vendor_url": "https://corp.narvar.com",
"icon_url": "https://storeleads.app/img/tech/narvar.png",
"installs": 971
},
{
"installed_at": "2024-07-16T22:39:36Z",
"name": "PayPal",
"description": "PayPal is an online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods like checks and money orders.",
"vendor_url": "https://developer.paypal.com/docs/checkout",
"icon_url": "https://storeleads.app/img/tech/paypal.png",
"installs": 2182472
},
{
"installed_at": "2022-02-14T23:05:39Z",
"name": "PayPal Express Checkout",
"description": "Add PayPal to your existing checkout.",
"vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
"icon_url": "https://storeleads.app/img/tech/paypal.png",
"installs": 1383433
},
{
"installed_at": "2022-07-20T02:07:43Z",
"name": "Pinterest Pixel",
"description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
"vendor_url": "https://help.pinterest.com/en/business/article/track-conversions-with-pinterest-tag",
"icon_url": "https://storeleads.app/img/tech/pinterest.png",
"installs": 471512
},
{
"installed_at": "2022-01-07T00:49:18Z",
"name": "ReferralCandy",
"description": "Reward your customers for referrals and watch the sales and shares roll in.",
"vendor_url": "https://www.referralcandy.com",
"icon_url": "https://storeleads.app/img/tech/referralcandy.png",
"installs": 1835
},
{
"installed_at": "2021-05-20T23:34:50Z",
"name": "Shogun",
"description": "Build and optimize your pages with Shogun, the most powerful page building platform for eCommerce teams and agencies.",
"vendor_url": "http://getshogun.com",
"icon_url": "https://storeleads.app/img/tech/shogun.png",
"installs": 46427
},
{
"installed_at": "2021-01-02T00:51:15Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"vendor_url": "https://shop.app/what-shop-does",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"installs": 1268119
},
{
"installed_at": "2023-03-30T17:54:39Z",
"name": "Signifyd",
"description": "Best in class chargeback guarantee protection",
"vendor_url": "https://www.signifyd.com",
"icon_url": "https://storeleads.app/img/tech/signifyd.png",
"installs": 9672
},
{
"installed_at": "2022-03-23T10:05:08Z",
"name": "Steelhouse",
"description": "Find new customers with highly-targeted, conversion-optimized Connected TV campaigns.",
"vendor_url": "https://mountain.com",
"icon_url": "https://storeleads.app/img/tech/steelhouse.png",
"installs": 1880
},
{
"installed_at": "2024-06-11T18:20:59Z",
"name": "SwellRewards",
"description": "Boost lifetime value and increase customer acquisition with Swell’s on-brand loyalty and referral solutions.",
"vendor_url": "https://www.swellrewards.com",
"icon_url": "https://storeleads.app/img/tech/swellrewards.png",
"installs": 14141
},
{
"installed_at": "2021-12-08T06:07:05Z",
"name": "TikTok Pixel",
"description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
"vendor_url": "https://www.tiktok.com/business/en",
"icon_url": "https://storeleads.app/img/tech/tiktok.png",
"installs": 569652
},
{
"installed_at": "2021-03-30T08:10:58Z",
"name": "TurnTo",
"description": "Next generation customer content.",
"vendor_url": "https://www.turntonetworks.com",
"icon_url": "https://storeleads.app/img/tech/turnto.png",
"installs": 287
}
],
"collections": [
"coffee-tea",
"iceflow",
"shop-all",
"best-selling-products",
"camping-cooking-gear",
"the-all-day-slim-bottle",
"stanley-clothing",
"soft-cooler-bags-collection",
"the-heatwave-collection",
"water-bottles",
"accessories",
"coolers",
"back-to-school",
"originals",
"classic-series",
"stanley-x-loveshackfancy",
"vacuum-bottles",
"all",
"barware",
"best-sellers",
"coolers-jugs",
"gifts-for-grads",
"pumpkin-spice",
"travel",
"tumblers",
"adventure-quencher-travel-tumblers",
"barbie-x-stanley",
"water-hydration",
"new-arrivals",
"stanley-create-custom",
"food-jars-storage",
"mugs-cups"
],
"cluster_domains": [
"www.stanley1913.com",
"www.stanley1913.com.br",
"www.stanley1913.ar",
"www.stanley1913.cl",
"stanley1913.mx",
"stanley1913.co",
"stanley1913.uy",
"stanley1913.ae",
"stanley1913.bo",
"stanley1913.gt",
"www.stanley1913.pe",
"stanley1913.com.py",
"www.stanley1913.cr",
"www.stanley1913.us.com",
"stanley1913.com.vn",
"ca.stanley1913.com",
"uk.stanley1913.com",
"jp.stanley1913.com",
"au.stanley1913.com",
"nz.stanley1913.com",
"kr.stanley1913.com",
"tr.stanley1913.com"
],
"features": [
"Shopify POS",
"Brand Advocate Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"Returns Page",
"FAQ Page",
"Store Locator Page",
"Warranty Page",
"Has Blog"
],
"ships_to_countries": [
"United States"
],
"rank_percentile": 0.0009,
"rank": 124,
"latitude": 47.6062095,
"longitude": -122.3320708,
"estimated_page_views": 100673733,
"estimated_sales": 8941309201,
"estimated_sales_yearly": 107295710412,
"estimated_visits": 28159282,
"product_images": 4248,
"product_images_created_365": 4045,
"product_images_created_90": 324,
"product_images_created_30": 46,
"employee_count": 583,
"cc_rank": 125158,
"cc_centrality": 89917,
"product_count": 340,
"max_price": 17000,
"max_price_usd": 17000,
"max_weight": 6178,
"monthly_app_spend": 16198,
"min_price": 800,
"min_price_usd": 800,
"min_weight": 30,
"variant_count": 1380,
"vendor_count": 2,
"avg_price": 4021,
"avg_price_usd": 4021,
"avg_weight": 616,
"platform_rank": 2
}
]
}
List App Reviews for Domain
Retrieves a list of App reviews associated with a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Note that reviews are only available for Shopify apps.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.stanley1913.com/app_reviews'
Example Response
{
"reviews": [
{
"app": {
"app_store_url": "https://apps.shopify.com/marsello",
"name": "Marsello: Loyalty, Email, SMS",
"vendor_name": "Marsello",
"id": "1.marsello"
},
"updated_at": "2024-08-07T00:00:00Z",
"body": "The Account Manager, Shanaya, is fantastic and super helpful.",
"merchant_name": "WE-AR",
"domains": [
{
"platform_domain": "we-ar.myshopify.com",
"name": "we-ar.com",
"platform_rank": 62409
}
],
"rating": 5
}
]
}
List Domains
Returns a list of Domains. The request options documented below can be used to constrain the results to Domains matching a specific criteria. Without any options, this endpoint will list all Domains.
By default, 50 Domains are returned in a single request. The cursor request option can be used to paginate through results.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second (cursor=all is limited to 1 request/minute) |
Pro and Elite | 2 requests/second (cursor=all is limited to 1 request/minute) |
Request Options
Filters the results to Domains matching the Advanced Search.
The cursor request option is used to paginate through search results. Each response that has more results returns a next_cursor attribute. Pass this value to the cursor request option to retrieve the next page of results. When you reach the end of the results, the response will not include a cursor.
Note that the cursor value is only valid until the next weekly data update. An error will be returned if you obtain a cursor prior to a weekly data update and then attempt to use it after the weekly update.
Use cursor=all to retrieve all Domains matching the provided filters in a single request. This can also be done using the Export Domains endpoint (which is slightly faster) however you may prefer to use this endpoint so that all results are returned in a single JSON document.
When using cursor=all, results are generated asynchronously and the initial request will immediately return an HTTP 202 response. The client should poll the same url, approximately once every 5 seconds, until an HTTP 200 response is returned (along with results).
When an HTTP 202 response is returned, the response body may include keys indicating the progress of the export.
{ "progress": 10000, "total": 750000 }
When using cursor=all, responses are returned in the same format as all other requests to the "List Domains" endpoint. However, these responses can be quite large (often including data for million of domains). Since the default response format puts all data into a single JSON document, this can be challenging to parse. Unless you are using a streaming JSON parser, then all data in the response must fit into memory which may be challenging for development environments or smaller cloud instances. Add for=jsonl to the request options to change the output format to JSONL (which returns one JSON document per line) which is easier to parse.
Filters the results to Domains that have the given app installed. Apps are identified by combining the App platform and the App token (e.g., "shopify.messenger").
Multiple values must be comma-separated.
Filters the results to Domains that have reviewed the given app. Apps are identified by combining the App platform and the App token (e.g., "shopify.messenger"). Only available for Domains that have left reviews for a Shopify app.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:an request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given administrative_area_level_1. Must be used with the f:cc filter.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:administrative_area_level_1:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:administrative_area_level_1 request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that installed the given App identifier within time ranges specified by f:app_installed_at:min and f:app_installed_at:max (at least one of min and max must be provided).
The minimum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App before the provided maximum date (in f:app_installed_at:max).
The maximum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App after the provided minimum date (in f:app_installed_at:min).
Filters the results to Domains that uninstalled the given App identifier within time ranges specified by f:app_uninstalled_at:min and f:app_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App before the provided maximum date (in f:app_uninstalled_at:max).
The maximum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App after the provided minimum date (in f:app_uninstalled_at:min).
Filters the results to Domains that have average product price greater than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have average product price less than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have the given category.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:cat request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given country code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cc:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cc request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with a location in the given city. Must be used with the f:cc and f:administrative_area_level_1 filters.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:city:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:city request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created on or after the given time.
Filters the results to Domains that were created on or before the given time.
Filters the results to Domains that were created in the given month (identified using YYYY-MM format).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymm:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymm request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created in the given week (identified using YYYY-MM-DD format). Note that our data is updated weekly and the weekly creation date is always grouped to a Friday. If you query with a value that is not a Friday, we will automatically map the value provided to the previous Friday. (e.g., 2019-04-22 is be mapped to 2019-04-19).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymmdd:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymmdd request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains selling with the given currency code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:curr:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:curr request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given state.
Valid values are:
- Active
- Inactive
- Password Protected
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ds:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ds request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have employee count greater than or equal to the provided integer value.
Filters the results to Domains that have employee count less than or equal to the provided integer value.
Filters the results to Domains that have estimated monthly sales greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have estimated monthly sales less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have the given features enabled.
Valid values are:
- Brand Advocate Page
- Brands Page
- Contact Page
- Financing Page
- Free Returns
- Gift Messasging
- Has Android App
- Has iOS App
- International Shipping
- Public Company
- Returns Page
- Shopify POS
- Signature Required
- Store Locator Page
- Storefront API
- Tracking Page
- Tracking or Returns
- UPS Access Point
- Warranty Page
- Wholesale/Retailers Page
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:features request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters results based on Domain type. This is a boolean field. Use true to return only Domains using a platform domain name (e.g., merchant.myshopify.com). Use false to return only Domains using a custom domain (e.g., shop.merchant.com).
The boolean operation to apply to values provided in the f:ismy request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters results to Domains that have contact information of the given type(s).
Valid values are:
- facebookgroup
- phone
- snapchat
- youtube
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:it request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with content in the given language code. (e.g., "en")
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:lang:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:lang request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platform pricing plans on or after the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed ecommerce platform pricing plans on or before the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed from the provided ecommerce platform.
Valid values are:
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abicart
- alibabaminisite
- allvalue
- americommerce
- arcadina
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- beatstars
- bentoweb
- bigcartel
- bigcommerce
- bleez
- bookmanager
- booqable
- boutir
- bwcommerce
- cafe24
- cartx
- cartzy
- ccvshop
- centra
- cityhive
- cleverbridge
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commerceup
- commercev3
- continuedfashion
- convertize
- corksy
- crystalcommerce
- cscart
- custom
- cyberbiz
- deliverybizpro
- demandware
- digitalriver
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- etsypattern
- expandcart
- f1
- farmacieinitalia
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- funpinpin
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- lattehub
- launchcart
- lazyshop
- lightspeed
- linx
- litium
- lizee
- lnwshop
- lojaintegrada
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- microweber
- mijnwebwinkel
- miva
- moovin
- mshop
- musicglue
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nop
- norce
- novomind
- ochre
- oddle
- odoo
- oemsaas
- opencart
- oracle
- ordable
- orderport
- oro
- oscommerce
- oxid
- photoshelter
- pixels
- plenty
- podia
- prestashop
- printify
- prom
- qdm
- quickbutik
- rain
- remarkable
- rentmy
- repisuto
- saffire
- sage
- salla
- samishop
- sana
- sap
- sapo
- satukz
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoprenter
- shoptet
- shoptille
- shopware
- shopwp
- shopyan
- shopyy
- sirclo
- sitecore
- sitedish
- sixshop
- smartetailing
- smartstore
- snipcart
- sodexo
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- stackcommerce
- starweb
- stoom
- storeberry
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- tamagotemonalab
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanube
- tiu
- tokotalk
- tossdown
- townsendmusic
- tradift
- tray
- treet
- twicecommerce
- ueeshop
- ultracommerce
- unas
- unicart
- unilog
- vendre
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vtex
- w2repeat
- waca
- wbuy
- webflow
- webmercs
- weeblycommerce
- weedmaps
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wshop
- wuilt
- wx3
- xonic
- yahoo
- yampi
- youcan
- zammit
- zencart
- zid
- zohocommerce
- zupain
- zvendo
- zyda
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:last_platform request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platforms on or after the provided date.
Filters the results to Domains that changed ecommerce platforms on or before the provided date.
Filters results to Domains that are on the associated Lists.
Lists are identified by the ID of the List which can be found using one of the List endpoints.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:lids request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have monthly app spend greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have monthly app spend less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains whose most recently published product is equal to or after the provided date.
Filters the results to Domains whose most recently published product is equal to or before the provided date.
Filters the results to Domains that have given Magento major version.
Valid values are:
- 1
- 2
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mmv:op to "or" if you provide multiple values.
Consider using the f:mv request option if you need to filter on the full Magento version.
The boolean operation to apply to values provided in the f:mmv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have given Magento version.
Examples of valid values are:
- 1.7.0.2
- 2.3
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mv:op to "or" if you provide multiple values.
Consider using the f:mmv request option if you only need to filter on the Magento major version.
The boolean operation to apply to values provided in the f:mv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Pinterest followers.
Filters the results to Domains that have a maximum number of Pinterest followers.
Filters the results to Domains that have added at least the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains using the given pricing plan.
Examples of valid values are:
- Shopify Plus
- Professional
- Performance
- Premium
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:plan:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:plan request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are on the given ecommerce platform.
Valid values are:
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abicart
- alibabaminisite
- allvalue
- americommerce
- arcadina
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- beatstars
- bentoweb
- bigcartel
- bigcommerce
- bleez
- bookmanager
- booqable
- boutir
- bwcommerce
- cafe24
- cartx
- cartzy
- ccvshop
- centra
- cityhive
- cleverbridge
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commerceup
- commercev3
- continuedfashion
- convertize
- corksy
- crystalcommerce
- cscart
- custom
- cyberbiz
- deliverybizpro
- demandware
- digitalriver
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- etsypattern
- expandcart
- f1
- farmacieinitalia
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- funpinpin
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- lattehub
- launchcart
- lazyshop
- lightspeed
- linx
- litium
- lizee
- lnwshop
- lojaintegrada
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- microweber
- mijnwebwinkel
- miva
- moovin
- mshop
- musicglue
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nop
- norce
- novomind
- ochre
- oddle
- odoo
- oemsaas
- opencart
- oracle
- ordable
- orderport
- oro
- oscommerce
- oxid
- photoshelter
- pixels
- plenty
- podia
- prestashop
- printify
- prom
- qdm
- quickbutik
- rain
- remarkable
- rentmy
- repisuto
- saffire
- sage
- salla
- samishop
- sana
- sap
- sapo
- satukz
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoprenter
- shoptet
- shoptille
- shopware
- shopwp
- shopyan
- shopyy
- sirclo
- sitecore
- sitedish
- sixshop
- smartetailing
- smartstore
- snipcart
- sodexo
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- stackcommerce
- starweb
- stoom
- storeberry
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- tamagotemonalab
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanube
- tiu
- tokotalk
- tossdown
- townsendmusic
- tradift
- tray
- treet
- twicecommerce
- ueeshop
- ultracommerce
- unas
- unicart
- unilog
- vendre
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vtex
- w2repeat
- waca
- wbuy
- webflow
- webmercs
- weeblycommerce
- weedmaps
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wshop
- wuilt
- wx3
- xonic
- yahoo
- yampi
- youcan
- zammit
- zencart
- zid
- zohocommerce
- zupain
- zvendo
- zyda
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have product count greater than or equal to the provided integer value.
Filters the results to Domains that have product count less than or equal to the provided integer value.
Filters the results to Domains that have platform rank greater than or equal to the provided integer value.
Filters the results to Domains that have platform rank less than or equal to the provided integer value.
Filters the results to Domains that have platform rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have platform rank percentile less than or equal to the provided float value.
Filters the results to Domains that have rank greater than or equal to the provided integer value.
Filters the results to Domains that have rank less than or equal to the provided integer value.
Filters the results to Domains that have rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have rank percentile less than or equal to the provided float value.
Filters the results to Domains that are in the given region (e.g., "Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:reg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:reg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are using the given Sales Channel.
Multiple values must be comma-separated.
Possible values:
- Abound
- Amazon
- Bulletin
- ChowNow
- DoorDash
- Ebay
- Etsy
- Faire
- GrubHub
- Handshake
- Mable
- Orderchamp
- Postmates
- Rentle
- Tundra
- Uber Eats
- ankorstore
The boolean operation to apply to values provided in the f:scs request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given subregion (e.g., "Northern Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:sreg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:sreg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that ships to the given country code (e.g., "CA").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:stcs:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:stcs request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given tags (e.g., "Print on Demand").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tags request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given technology installed (e.g., "Facebook Pixel").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tech request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that installed the given technology within time ranges specified by f:tech_installed_at:min and f:tech_installed_at:max (at least one of min and max must be provided).
The minimum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology before the provided maximum date (in f:tech_installed_at:max).
The maximum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology after the provided minimum date (in f:tech_installed_at:min).
Filters the results to Domains that uninstalled the given technology within time ranges specified by f:tech_uninstalled_at:min and f:tech_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology before the provided maximum date (in f:tech_uninstalled_at:max).
The maximum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology after the provided minimum date (in f:tech_uninstalled_at:min).
Filters the results to Domains that are in the given top-level domain (e.g., "net").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tld:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tld request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme name.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tn:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tn request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme style.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ts:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ts request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme vendor name.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tvn:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tvn request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Twitter followers.
Filters the results to Domains that have a maximum number of Twitter followers.
Filters the results to Domains that have added at least the given number of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have a minimum number of YouTube followers.
Filters the results to Domains that have a maximum number of YouTube followers.
Filters the results to Domains that have added at least the given number of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,apps.name
would return the name field from each Domain and the name field for all apps
on each Domain.
The number of Domains to return in a single query. Default: 50, Max: 5000.
Changes the sort order. Multiple fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Examples of valid fields are provided below. Note that each example uses "rank" as a secondary sort option. This is required to ensure consistent sort order when the value of the primary sort option is not unique (e.g., many stores have the same number of Pinterest followers, so you need to specify a secondary sort option as a tie-breaker).
aic,rank | Apps Installed (Asc) |
-aic,rank | Apps Installed (Desc) |
avgpp,rank | Average Product Price (Asc) |
-avgpp,rank | Average Product Price (Desc) |
cfc,rank | Combined Followers (Asc) |
-cfc,rank | Combined Followers (Desc) |
cratyyyymmddnco,rank | Created (Asc) |
-cratyyyymmddnco,rank | Created (Desc) |
empc,rank | Employee Count (Asc) |
-empc,rank | Employee Count (Desc) |
epv,rank | Estimated Page Views (Asc) |
-epv,rank | Estimated Page Views (Desc) |
er,rank | Estimated Sales (Asc) |
-er,rank | Estimated Sales (Desc) |
ev,rank | Estimated Visits (Asc) |
-ev,rank | Estimated Visits (Desc) |
lplancat,rank | Last Plan Changed At (Asc) |
-lplancat,rank | Last Plan Changed At (Desc) |
maxpp,rank | Maximum Product Price (Asc) |
-maxpp,rank | Maximum Product Price (Desc) |
mnamef,rank | Merchant Name (Asc) |
-mnamef,rank | Merchant Name (Desc) |
mas,rank | Monthly App Spend (Asc) |
-mas,rank | Monthly App Spend (Desc) |
fc_6,rank | Pinterest Followers (Asc) |
-fc_6,rank | Pinterest Followers (Desc) |
fc30d_6,rank | Pinterest Followers Last 30 Days (Asc) |
-fc30d_6,rank | Pinterest Followers Last 30 Days (Desc) |
fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Asc) |
-fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Desc) |
prank,rank | Platform Rank (Asc) |
-prank,rank | Platform Rank (Desc) |
pc,rank | Product Count (Asc) |
-pc,rank | Product Count (Desc) |
pic,rank | Product Image Count (Asc) |
-pic,rank | Product Image Count (Desc) |
rank | Rank (Asc) |
-rank | Rank (Desc) |
tc,rank | Theme Cost (Asc) |
-tc,rank | Theme Cost (Desc) |
fc_10,rank | TikTok Followers (Asc) |
-fc_10,rank | TikTok Followers (Desc) |
fc30d_10,rank | TikTok Followers Last 30 Days (Asc) |
-fc30d_10,rank | TikTok Followers Last 30 Days (Desc) |
fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Asc) |
-fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Desc) |
fc_1,rank | Twitter Followers (Asc) |
-fc_1,rank | Twitter Followers (Desc) |
fc30d_1,rank | Twitter Followers Last 30 Days (Asc) |
-fc30d_1,rank | Twitter Followers Last 30 Days (Desc) |
fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Asc) |
-fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Desc) |
fc_8,rank | YouTube Followers (Asc) |
-fc_8,rank | YouTube Followers (Desc) |
fc30d_8,rank | YouTube Followers Last 30 Days (Asc) |
-fc30d_8,rank | YouTube Followers Last 30 Days (Desc) |
fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Asc) |
-fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Desc) |
Filters Domains based on a text query. e.g., a query for "vape" will return only Domains that matching the word "vape" in one of the following fields:
- Domain name (prefix match only)
- Domain top-level domain plus one (prefix match only)
- Domain aliases (prefix match only)
- Merchant name
- Home page title tag
- Home page meta description tag
- Home page meta keywords tag
- Technologies
- App names
- Location
- Social media account names
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain?f:cc=US&f:cratyyyymm=2018-11&page_size=2'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:cc":"US","f:cratyyyymm":"2018-11"}' 'https://storeleads.app/json/api/v1/all/domain'
Example Response
{
"domains": [
{
"trustpilot": {
"review_count": 1,
"avg_rating": 3.4
},
"cluster_best_ranked": "cava.com",
"last_updated_at": "2024-09-03T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"title": "Mediterranean Lunch, Order, \u0026 Pickup | CAVA",
"state": "Active",
"icon": "https://cava.com/favicon.ico",
"region": "Americas",
"language_code": "en",
"last_platform_change_at": "2024-05-21T00:00:00",
"platform": "custom",
"merchant_name": "CAVA",
"last_platform": "shopify",
"keywords": "cava app cava rewards cava menu cava popular items cava events cava cava locations cava catering cava online ordering cava opening cava order ahead cava pita cava restaurant locations cava restaurants cava spicy hummus cava take out cava to go cava delivery cava delivered get cava kava cava carry out cava order cava gluten free cava food cava greek food cava grill cava bowls cava grill order online cava group order cava mediterranean cava mezze cava near me cava mezze healthy fast casual healthy lunch spots mediterranean diet healthy places to eat healthy take out restaurants healthy fast food restaurants healthy fast food lunch healthy food to order out healthy lunch places healthy lunch ideas fast food healthy lunch takeaway mediterranean food mediterranean food near me",
"created_at": "2018-11-09T00:00:00",
"name": "cava.com",
"description": "Discover the mouthwatering flavors of Cava's Mediterranean-inspired cuisine. Enjoy fresh ingredients and bold flavors at our restaurant.",
"retailer_page": "https://cava.com/news/chandler-opening",
"contact_info": [
{
"description": "Welcome to our table. Delicious, flavor-packed food inspired by our Mediterranean roots",
"followers": 13400,
"posts": 24853,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/cava"
},
{
"source": "/",
"type": "facebook",
"value": "https://facebook.com/cava"
},
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/cava"
},
{
"followers": 93000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@cava"
},
{
"source": "/news",
"type": "email",
"value": "media@cava.com"
},
{
"source": "/news",
"type": "phone",
"value": "202-800-8279"
},
{
"source": "/terms",
"type": "email",
"value": "hello@cava.com"
},
{
"source": "/locations",
"type": "email",
"value": "houston@cava.com"
},
{
"type": "linkedin",
"value": "http://www.linkedin.com/company/cava-"
}
],
"aliases": [
"cavatable.com"
],
"categories": [
"/Food \u0026 Drink"
],
"technologies": [
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Bing Ads",
"description": "Bing Ads conversion tracking collects data that allows you to track conversion goals and target audiences with remarketing lists.",
"vendor_url": "https://advertise.bingads.microsoft.com/en-ca/solutions/audience-targeting/universal-event-tracking",
"icon_url": "https://storeleads.app/img/tech/bingads.png",
"installs": 154861
},
{
"installed_at": "2023-10-30T01:11:53Z",
"name": "Cloudflare",
"description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 4334934
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 3634723
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Contentful",
"description": "Contentful is a modern content platform.",
"vendor_url": "https://www.contentful.com",
"icon_url": "https://storeleads.app/img/tech/contentful.png",
"installs": 4974
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"vendor_url": "https://www.facebook.com/business/learn/facebook-ads-pixel",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2714483
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"vendor_url": "https://ads.google.com/",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 2930755
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"vendor_url": "https://www.google.com/adsense/start",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3986298
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"vendor_url": "https://tagmanager.google.com/",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 4220088
},
{
"installed_at": "2024-04-22T11:32:42Z",
"name": "Kustomer",
"description": "A customer service CRM platform built for today.",
"vendor_url": "https://www.kustomer.com",
"icon_url": "https://storeleads.app/img/tech/kustomer.png",
"installs": 831
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Next.js",
"description": "Next.js is a React framework often used on headless ecommmerce websites.",
"vendor_url": "https://www.gatsbyjs.com",
"icon_url": "https://storeleads.app/img/tech/gatsbyjs.png",
"installs": 61999
},
{
"installed_at": "2024-03-04T19:20:50Z",
"name": "Pinterest Pixel",
"description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
"vendor_url": "https://help.pinterest.com/en/business/article/track-conversions-with-pinterest-tag",
"icon_url": "https://storeleads.app/img/tech/pinterest.png",
"installs": 471512
},
{
"installed_at": "2024-07-16T19:14:55Z",
"name": "Securiti",
"description": "Enabling Safe Use of Data \u0026 AI. Unified Intelligence \u0026 Controls Across Hybrid Multicloud.",
"vendor_url": "https://securiti.ai/",
"icon_url": "https://storeleads.app/technologies/img/Securiti.png",
"installs": 184
},
{
"installed_at": "2024-07-23T03:53:23Z",
"name": "The Trade Desk",
"description": "The omnichannel advertising platform built for the open internet.",
"vendor_url": "https://www.thetradedesk.com",
"icon_url": "https://storeleads.app/img/tech/thetradedesk.png",
"installs": 6399
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "TikTok Pixel",
"description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
"vendor_url": "https://www.tiktok.com/business/en",
"icon_url": "https://storeleads.app/img/tech/tiktok.png",
"installs": 569652
},
{
"installed_at": "2023-06-06T14:43:32Z",
"name": "Uber Eats",
"description": "Order food to your door.",
"vendor_url": "https://www.ubereats.com",
"icon_url": "https://storeleads.app/img/tech/ubereats.png",
"installs": 6896
}
],
"cluster_domains": [
"cava.com",
"www.cava.tn",
"www.cava.gr",
"www.cava.boutique",
"www.cava.dk",
"www.cava.fi",
"cava.com.vn",
"www.cava.pa",
"www.cava.com.co",
"cava.fr",
"cava.vn",
"cava.com.uy",
"www.cava.lima-city.de",
"cava.lima-city.de",
"cava.to",
"cava.media",
"catering.cava.com"
],
"features": [
"Has iOS App",
"Has Android App",
"Wholesale/Retailers Page",
"Headless",
"Has CMS"
],
"redirects_to": [
"cava.com"
],
"rank_percentile": 0.0039,
"rank": 529,
"platform_rank_percentile": 0.0214,
"estimated_page_views": 32822481,
"estimated_sales": 2915119447,
"estimated_sales_yearly": 34981433364,
"estimated_visits": 9180721,
"employee_count": 1192,
"cc_rank": 247649,
"cc_centrality": 1194075,
"product_count": 35,
"platform_rank": 363
},
{
"alternates": {
"ar": "www.westerndigital.com",
"ar-AE": "www.westerndigital.com",
"ar-DZ": "www.westerndigital.com",
"ar-EG": "www.westerndigital.com",
"ar-QA": "www.westerndigital.com",
"cs": "www.westerndigital.com",
"de": "www.westerndigital.com",
"de-AT": "www.westerndigital.com",
"el": "www.westerndigital.com",
"en": "www.westerndigital.com",
"en-AT": "www.westerndigital.com",
"en-AU": "www.westerndigital.com",
"en-BD": "www.westerndigital.com",
"en-BE": "www.westerndigital.com",
"en-BG": "www.westerndigital.com",
"en-BY": "www.westerndigital.com",
"en-CA": "www.westerndigital.com",
"en-DK": "www.westerndigital.com",
"en-EE": "www.westerndigital.com",
"en-FI": "www.westerndigital.com",
"en-GB": "www.westerndigital.com",
"en-HR": "www.westerndigital.com",
"en-HU": "www.westerndigital.com",
"en-IE": "www.westerndigital.com",
"en-IL": "www.westerndigital.com",
"en-IN": "www.westerndigital.com",
"en-LT": "www.westerndigital.com",
"en-LV": "www.westerndigital.com",
"en-MY": "www.westerndigital.com",
"en-NO": "www.westerndigital.com",
"en-NZ": "www.westerndigital.com",
"en-PH": "www.westerndigital.com",
"en-PT": "www.westerndigital.com",
"en-RO": "www.westerndigital.com",
"en-SE": "www.westerndigital.com",
"en-SG": "www.westerndigital.com",
"en-SI": "www.westerndigital.com",
"en-SK": "www.westerndigital.com",
"en-UA": "www.westerndigital.com",
"en-US": "www.westerndigital.com",
"en-VN": "www.westerndigital.com",
"es": "www.westerndigital.com",
"es-AR": "www.westerndigital.com",
"es-CL": "www.westerndigital.com",
"es-CO": "www.westerndigital.com",
"es-EC": "www.westerndigital.com",
"es-ES": "www.westerndigital.com",
"es-MX": "www.westerndigital.com",
"es-PE": "www.westerndigital.com",
"fr": "www.westerndigital.com",
"fr-CA": "www.westerndigital.com",
"id": "www.westerndigital.com",
"it": "www.westerndigital.com",
"ja": "www.westerndigital.com",
"ko": "www.westerndigital.com",
"nl": "www.westerndigital.com",
"pl": "www.westerndigital.com",
"pt": "www.westerndigital.com",
"ru": "www.westerndigital.com",
"th": "www.westerndigital.com",
"tr": "www.westerndigital.com",
"x-default": "www.westerndigital.com",
"zh": "www.westerndigital.com",
"zh-TW": "www.westerndigital.com"
},
"cluster_best_ranked": "www.westerndigital.com",
"city": "San Jose",
"last_updated_at": "2024-09-03T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.westerndigital.com/company/contact-us",
"country_code": "US",
"title": "HDDs \u0026 NVMe SSDs for PCs, NAS, Gaming, Data Centers, and AI Data Cycles | Western Digital",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://www.westerndigital.com/content/dam/store/en-us/portal-assets/logos/shop-fav-icon.ico",
"brand_advocate_page": "https://www.westerndigital.com/company/programs/affiliate-program",
"financing_page": "https://www.westerndigital.com/company/programs/affirm-financing",
"faq_page": "https://www.westerndigital.com/company/programs/data-recovery/faq",
"region": "Americas",
"language_code": "en",
"tracking_page": "https://www.westerndigital.com/company/newsroom/press-releases/2023/2023-11-16-western-digital-begins-volume-shipments-of-24tb-cmr-hdds",
"platform": "custom",
"location": "San Jose, CA, USA",
"og_image": "https://www.westerndigital.com/content/dam/store/en-us/portal-assets/logos/wdc-og-logo.jpg",
"merchant_name": "Western Digital",
"warranty_page": "https://www.westerndigital.com/company/programs/extended-warranty",
"created_at": "2018-11-02T00:00:00",
"name": "www.westerndigital.com",
"description": "Western Digital, leaders in digital storage solutions compatible with Mac and PC. FREE shipping, friendly support, and 30-day return policy on storage products.",
"retailer_page": "https://www.westerndigital.com/company/distributors",
"contact_info": [
{
"description": "We create data storage solutions that power the technology of today and inspire the innovations of tomorrow. #WesternDigital\n\nNeed help? DM @WesternDigiCare.",
"followers": 173711,
"posts": 5136,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/westerndigital"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/WesternDigitalCorporation"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/westerndigital"
},
{
"source": "/",
"type": "phone",
"value": "855-493-7867"
},
{
"description": "Official Western Digital news and insights. Western Digital is driving the innovation needed to help customers capture, preserve, access and transform an eve...",
"followers": 11100,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/channel/UCQpijqbZeCM3zLew0ZwiX4A"
},
{
"source": "/",
"type": "linkedin",
"value": "https://www.linkedin.com/company/western-digital"
},
{
"source": "/company/programs/data-recovery/faq",
"type": "phone",
"value": "855-493-7687"
}
],
"aliases": [
"www.shareyourmemory.in",
"www.sandisk.de"
],
"categories": [
"/Computers/Computer Hardware/Computer Drives \u0026 Storage"
],
"technologies": [
{
"installed_at": "2022-11-09T09:58:14Z",
"name": "Adobe Analytics",
"description": "Adobe Analytics lets you mix, match, and analyze data from any digital point in the customer journey.",
"vendor_url": "https://business.adobe.com/ca/products/analytics/adobe-analytics.html",
"icon_url": "https://storeleads.app/img/tech/adobe.png",
"installs": 4941
},
{
"installed_at": "2024-07-23T03:41:59Z",
"name": "Adobe Experience Manager",
"description": "Adobe Experience Manager combines digital asset management with the power of a content management system.",
"vendor_url": "https://business.adobe.com/products/experience-manager/adobe-experience-manager.html",
"icon_url": "https://storeleads.app/img/tech/adobe.png",
"installs": 2531
},
{
"installed_at": "2021-06-14T21:09:02Z",
"name": "Adobe Tag Manager",
"description": "Adobe Cloud Platform Launch makes it easy to manage tags",
"vendor_url": "https://business.adobe.com/ca/products/analytics/tag-management.html",
"icon_url": "https://storeleads.app/img/tech/adobe.png",
"installs": 7551
},
{
"installed_at": "2021-11-02T21:04:41Z",
"name": "Affirm",
"description": "Affirm lets you shop stress-free at thousands of stores, with no late fees and no surprises. Just select Affirm at checkout.",
"vendor_url": "https://www.affirm.com/",
"icon_url": "https://storeleads.app/img/tech/affirm.png",
"installs": 16084
},
{
"installed_at": "2021-11-02T21:04:41Z",
"name": "Baazarvoice",
"description": "Connect shoppers with authentic content they trust.",
"vendor_url": "https://www.bazaarvoice.com",
"icon_url": "https://storeleads.app/img/tech/bazaarvoice.png",
"installs": 5349
},
{
"installed_at": "2022-03-03T04:06:38Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"vendor_url": "https://www.facebook.com/business/learn/facebook-ads-pixel",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2714483
},
{
"installed_at": "2023-11-01T05:14:08Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"vendor_url": "https://ads.google.com/",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 2930755
},
{
"installed_at": "2024-09-03T18:54:01Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"vendor_url": "https://www.google.com/adsense/start",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3986298
},
{
"installed_at": "2020-05-24T13:10:35Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"vendor_url": "https://tagmanager.google.com/",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 4220088
},
{
"installed_at": "2023-11-01T05:14:08Z",
"name": "PayPal",
"description": "PayPal is an online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods like checks and money orders.",
"vendor_url": "https://developer.paypal.com/docs/checkout",
"icon_url": "https://storeleads.app/img/tech/paypal.png",
"installs": 2182472
},
{
"installed_at": "2021-11-02T21:04:41Z",
"name": "Salesforce",
"description": "Salesforce provides customer relationship management service and also provides a complementary suite of enterprise applications focused on customer service, marketing automation, analytics, and application development.",
"vendor_url": "https://www.salesforce.com",
"icon_url": "https://storeleads.app/img/tech/salesforce.png",
"installs": 28369
},
{
"installed_at": "2024-07-16T19:03:34Z",
"name": "TrustArc",
"description": "Elevate trust across customers, vendors, and regulators with best-in-class, automated privacy solutions.",
"vendor_url": "https://trustarc.com/",
"icon_url": "https://storeleads.app/technologies/img/TrustArc.png",
"installs": 2639
},
{
"installed_at": "2022-03-03T04:06:38Z",
"name": "YouTube Player",
"description": "The YouTube Player lets you embed YouTube videos in your website or application.",
"vendor_url": "https://www.youtube.com",
"icon_url": "https://storeleads.app/img/youtube.png",
"installs": 2189536
},
{
"installed_at": "2020-06-09T19:41:43Z",
"name": "reCAPTCHA",
"description": "reCAPTCHA is a free service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease.",
"vendor_url": "https://www.google.com/recaptcha/intro/v3.html",
"icon_url": "https://storeleads.app/img/tech/recaptcha.png",
"installs": 2701003
},
{
"installed_at": "2024-01-17T07:41:06Z",
"name": "zinrelo",
"description": "Loyalty comes in many flavors. Zinrelo unlocks them all!",
"vendor_url": "https://zinrelo.com",
"icon_url": "https://storeleads.app/img/tech/zinrelo.png",
"installs": 483
}
],
"cluster_domains": [
"www.westerndigital.com"
],
"features": [
"Warranty Page",
"Contact Page",
"Tracking or Returns",
"Tracking Page",
"FAQ Page",
"Financing Page",
"Wholesale/Retailers Page",
"Brand Advocate Page",
"Has CMS",
"Public Company"
],
"rank_percentile": 0.0044,
"rank": 608,
"latitude": 37.3382082,
"platform_rank_percentile": 0.0242,
"longitude": -121.8863286,
"estimated_page_views": 14140930,
"estimated_sales": 125466666666,
"estimated_sales_yearly": 1300300000000,
"estimated_visits": 3955336,
"employee_count": 19465,
"cc_rank": 14488,
"cc_centrality": 9215,
"product_count": 381,
"platform_rank": 409
}
],
"has_next_page": true,
"next_cursor": "5b22205c75303030314041405c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c223236323537323831225d",
"total": 14799
}
Advanced Search for Domains
Sometimes you'll need to filter Domains in a more complex manner than is supported by the various f: request options supported by List Domains.
Example: Complex text queries
As an example, let's say that you want to return all Shopify Domains that match the query "kids" and also match any of the following words: "footwear", "shoes" and "boots". Further, you want to filter out any results that match "ski" or "ballet" because you're not interested in that kind of kids footwear.
This complex search expression can be expressed using the aq request option (which is analogous to Advanced Search in the UI).
The aq request option takes an array of search descriptors. Each descriptor must provide the following values:
- field: the name of the field
- value: the value to query against (multiple values must be comma-separated)
-
operator: the operation to apply when multiple values are provided
- and (default): Returns Domains matching all provided values
- or: Returns Domains matching any of the provided values
- nand: Returns Domains that do not match all of the provided values
- nor: Returns Domains that do not match any of the provided values
Our example query would be represented as:
[ { "field": "q", "value": "kids"}, { "field": "q", "value": "footwear shoes boots", "operator": "or"}, { "field": "q", "value": "ski ballet", "operator": "nor"} ]
Example Request
The example advanced query above can be executed using the following HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"aq":[{"field":"q","value":"kids"},{"field":"q","value":"footwear shoes boots","operator":"or"},{ "field":"q","value":"ski ballet","operator":"nor"}]}' 'https://storeleads.app/json/api/v1/all/domain'
Filters expressed with the aq request option can be combined with other filter request options.
Supported Fields
Advanced queries can be run against the following fields.
- Merchant name
- Home page title tag
- Home page meta description tag
- Home page meta keywords tag
- Technologies
- App names
- Location
- Social media account names
List Domains by Company/Brand
Returns a list of Domains matching a company name or brand name. This is a fuzzy match and can return multiple domains in decreasing order of likelihood.
Tip: You'll get better results if you use spacing that is consistent with the company/brand name. For instance, search for "Steve Madden" rather than "SteveMadden".
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
The number of Domains to return. Default 5, maximum 50.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/company/gymshark?fields=name,state,rank'
Example Response
{
"domains": [
{
"state": "Active",
"name": "www.gymshark.com",
"rank": 338
},
{
"state": "Active",
"name": "uk.gymshark.com",
"rank": 11431211
},
{
"state": "Active",
"name": "ca.gymshark.com",
"rank": 11431515
},
{
"state": "Active",
"name": "fr.gymshark.com",
"rank": 11431609
},
{
"state": "Active",
"name": "eu.gymshark.com",
"rank": 11431842
}
]
}
List Domains By TLD1
Returns a list of Domains with the matching TLD1 (top-level-domain plus one). This is useful when you want to list all domains that share a top-level-domain plus one (e.g., all subdomains of "gymshark.com").
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/bytld1/gymshark.com?fields=name,language_code,state,rank'
Example Response
{
"domains": [
{
"state": "Active",
"language_code": "en",
"name": "www.gymshark.com",
"rank": 338
},
{
"state": "Active",
"language_code": "en",
"name": "uk.gymshark.com",
"rank": 11431211
},
{
"state": "Active",
"language_code": "en",
"name": "ca.gymshark.com",
"rank": 11431515
},
{
"state": "Active",
"language_code": "fr",
"name": "fr.gymshark.com",
"rank": 11431609
},
{
"state": "Active",
"language_code": "en",
"name": "eu.gymshark.com",
"rank": 11431842
},
{
"state": "Active",
"language_code": "de",
"name": "de.gymshark.com",
"rank": 11431851
},
{
"state": "Active",
"language_code": "en",
"name": "au.gymshark.com",
"rank": 11431946
},
{
"state": "Active",
"language_code": "en",
"name": "row.gymshark.com",
"rank": 11431984
},
{
"state": "Active",
"language_code": "en",
"name": "se.gymshark.com",
"rank": 11432765
},
{
"state": "Active",
"language_code": "nl",
"name": "nl.gymshark.com",
"rank": 11432813
},
{
"state": "Active",
"language_code": "en",
"name": "no.gymshark.com",
"rank": 11433560
},
{
"state": "Active",
"language_code": "en",
"name": "dk.gymshark.com",
"rank": 11434933
},
{
"state": "Active",
"language_code": "en",
"name": "fi.gymshark.com",
"rank": 11435220
},
{
"state": "Active",
"language_code": "de",
"name": "ch.gymshark.com",
"rank": 11435382
},
{
"state": "Active",
"language_code": "en",
"name": "ie.gymshark.com",
"rank": 11440162
},
{
"state": "Redirects",
"name": "de-en.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "m.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "www.uk.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "gymshark.com",
"rank": 14999999
},
{
"state": "Duplicate",
"language_code": "en",
"name": "dk.shop.gymshark.com",
"rank": 14999999
}
]
}
Export Domains
Returns all Domains matching the request options. Unlike List Domains, this endpoint does not paginate, instead it returns all Domains matching the query in a single response.
Note: This endpoint is deprecated and usage is not encouraged. Instead, we suggest:
- Using a workflow to distribute data to S3 or GCS.
- You may use the cursor request option of the List Domains endpoint (by passing cursor=all) to return all Domains matching a query. When using cursor=all, we suggest also setting for=jsonl to retrieve data in JSONL format.
Plan | Rate Limit |
---|---|
All plans | 1 request/minute |
Request Options
Supports the same request options as List Domains.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain-export?f:p=shopify&f:cc=US&f:cratyyyymm=2018-11'
Export requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"f:cc":"US","f:cratyyyymm":"2018-11","f:p":"shopify"}' 'https://storeleads.app/json/api/v1/all/domain-export'
Example Response
The export endpoint streams the response as results are generated. Each line is a separate JSON document so be sure to parse the response one line at a time. The resulting domains are grouped into "chunks" which can arrived out-of-order. Each chunk includes an ordinal so that out-of-order results can be sorted if order is significant to your use case.
The first JSON document in the response contains meta information describing the response. It includes the following attributes:
Subsequent documents contain the chunk ordinal and a list of domains within the chunk.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "chunk": 1, "domains": [ {"name": "lidetailers.com", ... } ] }
Error Handling
Since the export endpoint is streamed, we cannot set the HTTP status code (which is set in the HTTP headers at the beginning on the response) when an error occurs in the middle of the stream. As a result, clients need additional error checking when using the export endpoint.
If an error occurs in the middle of a stream, a JSON document describing that error is written to the stream.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "error": "error description" }
Clients should always verify that the response contained the expected number of chunks (by comparing the number of chunks received against the expected_chunks value in the meta JSON document).
Best Practices
Networks are unreliable and connections often timeout if left open too long. To minimize the likelihood of networking errors, we suggest downloading the results of the export endpoint as quickly as possible. This means that you should do minimal processing of the results until the entire response has been read allowing the TCP connection to close. Depending on the RAM available on your servers and the number of domains that you are retrieving, you may be able to read the entire response into memory. If that is not an option, consider writing the response to a temporary file on disk instead. Then, run whatever processing is necessary on the persisted results.
Historical Domain Data
The Store Leads database only includes information for stores that are currently live. If a store was created in early 2020 but no longer exists, then it is not included in the main Store Leads database. However, there are a variety of use cases that need historical data. We have been archiving our weekly updates since early 2019 and they are available for download to accounts on our Enterprise Plan.
List Historical Domain Labels
Returns a list of labels identifying the weekly historical domain data. The label is used to download a specific weekly archive.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/historical/domain'
Example Response
{
"labels": [
"20190218092912",
"20190227134551",
"20190304082117",
"20190311085351",
"20190318082207",
"20190325191823",
"20190403101554",
"20190407214523",
"20190417115057",
"20190421224615",
"20190429090715",
"20190506114709",
"20190513073041",
"20190520073516",
"20190527093528",
"20190603075609",
"20190610074320",
"20190617070742",
"20190624111028",
"20190703124137",
"20190707191027",
"20190715092554",
"20190722093326",
"20190728160710",
"20190805082041",
"20190812075123",
"20190818203216",
"20190826111509",
"20190904111622",
"20190909084125",
"20190916091636",
"20190925122344",
"20190929203713",
"20191007112852",
"20191014091114",
"20191022075327",
"20191029075012",
"20191104100921",
"20191110193432",
"20191118082405",
"20191125180407",
"20191202122535",
"20191210083939",
"20191216090111",
"20191224064444",
"20200107081949",
"20200113084204",
"20200119192542",
"20200128190643",
"20200205134222",
"20200211142710",
"20200218125517",
"20200224092439",
"20200304075613",
"20200310160715",
"20200316181853",
"20200323070939",
"20200329190223",
"20200406085043",
"20200414070452",
"20200420194544",
"20200427074213",
"20200506154523",
"20200511134937",
"20200527084641",
"20200601063420",
"20200609101137",
"20200617134604",
"20200622064615",
"20200629203612",
"20200706102742",
"20200713074823",
"20200720065542",
"20200727071119",
"20200803084521",
"20200812130603",
"20200817072035",
"20200824132034",
"20200901091737",
"20200908072535",
"20200915074744",
"20200921072643",
"20200928075254",
"20201005090041",
"20201012105058",
"20201019093048",
"20201027075023",
"20201103195627",
"20201109094755",
"20201117103343",
"20201123135824",
"20201130070451",
"20201207082905",
"20201214133659",
"20201222075353",
"20201229111529",
"20210105201201",
"20210111145026",
"20210117202955",
"20210125193859",
"20210131195453",
"20210208080330",
"20210216083405",
"20210223150323",
"20210302072701",
"20210309065709",
"20210315202640",
"20210322214628",
"20210329184849",
"20210406205515",
"20210412150450",
"20210419064809",
"20210426074742",
"20210502180739",
"20210510062325",
"20210517060518",
"20210524142656",
"20210530214213",
"20210607023242",
"20210614142232",
"20210621182727",
"20210629013444",
"20210704233531",
"20210711181833",
"20210718200634",
"20210726134443",
"20210802063326",
"20210809023919",
"20210817181726",
"20210823061817",
"20210830073414",
"20210906171310",
"20210912194701",
"20210920074928",
"20210927025807",
"20211005160251",
"20211010181202",
"20211018064626",
"20211026015210",
"20211101042006",
"20211108145039",
"20211114155639",
"20211121234757",
"20211128182059",
"20211206152603",
"20211212185751",
"20211219201107",
"20211226220141",
"20220102231528",
"20220110041749",
"20220116154800",
"20220123181934",
"20220130222422",
"20220206223325",
"20220213191036",
"20220220194254",
"20220227211854",
"20220306235926",
"20220314002910",
"20220320162154",
"20220327194059",
"20220404005545",
"20220410214639",
"20220417145954",
"20220424164423",
"20220502005248",
"20220508172859",
"20220515233416",
"20220522162016",
"20220529155049",
"20220605220333",
"20220612173900",
"20220619204931",
"20220626174212",
"20220703181215",
"20220710180111",
"20220718160959",
"20220724165254",
"20220731193206",
"20220807210841",
"20220815002357",
"20220822060842",
"20220828202008",
"20220905035500",
"20220911200404",
"20220918222642",
"20220925203653",
"20221002233842",
"20221009224958",
"20221016180008",
"20221023204349",
"20221030191052",
"20221106215022",
"20221114024057",
"20221121103515",
"20221128042001",
"20221204230205",
"20221212070236",
"20221219150643",
"20221226040933",
"20230102145518",
"20230109050237",
"20230116024002",
"20230123031133",
"20230129222903",
"20230206024837",
"20230213022339",
"20230220011528",
"20230227011116",
"20230306094934",
"20230313033648",
"20230319230117",
"20230326232019",
"20230403011428",
"20230409234256",
"20230416183844",
"20230423214801",
"20230501125140",
"20230508012629",
"20230515132758",
"20230522011949",
"20230529031805",
"20230604223356",
"20230612004848",
"20230618181647",
"20230625213017",
"20230703085219",
"20230710031527",
"20230717031527",
"20230723192358",
"20230730215749",
"20230807042255",
"20230814033329",
"20230821120439",
"20230828055011",
"20230904022248",
"20230911045220",
"20230918102504",
"20230925040109",
"20231002020708",
"20231009014332",
"20231016052804",
"20231022210226",
"20231029103705",
"20231105143247",
"20231112113834",
"20231119152414",
"20231126152225",
"20231203122343",
"20231210161424",
"20231217135652",
"20231224225609",
"20231231234054",
"20240107132004",
"20240114203640",
"20240121134320",
"20240128142815",
"20240204125654",
"20240211210040",
"20240218151802",
"20240225160818",
"20240303193307",
"20240310164523",
"20240317205831",
"20240324123510",
"20240331142029",
"20240407105837",
"20240414192722",
"20240421094305",
"20240428145017",
"20240505151419",
"20240512120314",
"20240519132821",
"20240526184345",
"20240603012124",
"20240609110003",
"20240616134301",
"20240623100252",
"20240629230925",
"20240707005931",
"20240714080522",
"20240721015945",
"20240728030356",
"20240804045227",
"20240811052406",
"20240818041309",
"20240825005031",
"20240901081643",
"20240908010800"
]
}
List Domains from Historical Data
This endpoint retrieves all domains from a historical dataset. You must provide a label to identify the dataset. It is not possible to filter this endpoint, so all domains that existed at the given time will be included in the results and you'll need to filter the results after retrieving the data.
Data is returned in JSONL format (one document per line).
Use the fields request option to customize the fields included in the response.
Plan | Rate Limit |
---|---|
All plans | 1 requests/minute |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,apps.name
would return the name field from each Domain and the name field for all apps
on each Domain.
Return no more than the provided number of records.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/historical/domain/20210208080330?fields=name,platform&limit=5'
Lists
Lists objects represent a collection of Domains. Learn more about Lists in our Lists documentation. The API allows you to retrieve information for a List based on its name or by showing all lists that exist. Your API key can access information for any List created by any Account in your organization.
The attributes of the List object are documented below.
Retrieve a List
Retrieves the details of a List. You must provide the name of the List to lookup.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/list/List%20Name'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
}
}
List Lists
Returns a list of Lists that your Account can access.
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/list'
Example Response
{
"lists": [
{
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
}
]
}
Add Domains to List
Adds a set of Domains to a List.
Note:- A maximum of 10,000 domains can be added per request.
- Do not send concurrent requests to this endpoint.
- Domains cannot be added to lists created by saving a search.
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -X PUT -H "Content-Type: application/json" -d '{"domains": ["kyliecosmetics.com","www.fashionnova.com","unrecognized.com"]}' 'https://storeleads.app/json/api/v1/all/list/List%20Name/add-domains'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
},
"count_domains_added": 2,
"unrecognized_domains": [
"unrecognized.com"
]
}
Remove Domains from List
Removes a set of Domains from a List.
Note:- A maximum of 10,000 domains can be removed per request.
- Do not send concurrent requests to this endpoint.
- Domains cannot be removed from lists created by saving a search.
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -X PUT -H "Content-Type: application/json" -d '{"domains": ["kyliecosmetics.com","www.fashionnova.com","unrecognized.com"]}' 'https://storeleads.app/json/api/v1/all/list/List%20Name/remove-domains'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
},
"count_domains_removed": 2,
"unrecognized_domains": [
"unrecognized.com"
]
}
Truncate List
Removes all Domains from a List. Note: domains cannot be removed from lists created by saving a search.
Plan | Rate Limit |
---|---|
Enterprise | 9 requests/second |
Pro and Elite | 3 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -X PUT -H "Content-Type: application/json" 'https://storeleads.app/json/api/v1/all/list/List%20Name/truncate'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
},
}
Social Media Accounts
Social Media Account objects represent a handle on a social media network that is associated with a Domain in the Store Leads database.
The attributes of the Social Media Account object are documented below.
Retrieve a Social Media Account
Retrieves the details of a Social Media Account.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/social?url=https://twitter.com/amazon'
Example Response
{
"details": {
"description": "Delivering smiles one box at a time . Use @AmazonHelp for customer support and @AmazonNews for the latest.",
"followers": 5900000,
"following": 50,
"posts": 45830,
"type": "twitter",
"value": "https://twitter.com/amazon"
},
"domain_names": [
"www.amazon.com",
"www.amazon.co.jp",
"www.amazon.com.br",
"www.amazon.es",
"www.amazon.ca",
"amazon-basics.club"
]
}
Technologies
Technology objects represent a technology that a store can install on their website. Technologies differ from Apps in that they are not installed through the ecommerce platform's App Store and therefore are cross-platform.
The attributes of the Technology object are documented below.
The time at which the Technology was installed by a Domain.
Retrieve a Technology
Retrieves the details of a Technology.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/technology/Yoast'
Example Response
{
"technology": {
"name": "Yoast",
"description": "Yoast helps you with your website optimization, whether it be through our widely used SEO software or our online SEO courses: we're here to help.",
"vendor_url": "https://yoast.com",
"icon_url": "https://storeleads.app/img/tech/yoast.png",
"installs": 1799037
}
}
List Technologies
Returns a list of Technologies. By default, 50 Technologies are returned in a single request. The page request option can be used to paginate.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second |
Pro and Elite | 2 requests/second |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- installs
Filters Technologies based on a text query.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/technology?page_size=2&sort=-installs'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"sort":"-installs"}' 'https://storeleads.app/json/api/v1/all/technology'
Example Response
{
"technologies": [
{
"name": "Olapic",
"description": "Olapic delivers high-performing content to your customers – everywhere they are.",
"vendor_url": "https://www.olapic.com",
"icon_url": "https://storeleads.app/img/tech/olapic.png",
"installs": 702
},
{
"name": "Aftership",
"description": "The #1 Tracking Solution for eCommerce Businesses. Aftership delights customers with effortless tracking and proactive delivery updates.",
"vendor_url": "https://www.aftership.com",
"icon_url": "https://storeleads.app/img/tech/aftership.png",
"installs": 23735
}
]
}
Tools
Postman
Postman is an app for easy RESTful API exploration and testing. You can use Postman to test API calls without having to write code.
To help get you started, you can review the Store Leads API in Postman. Then, follow the steps below to test the API interactively using the Postman app.
- If you don't already have it installed, visit https://www.getpostman.com/ and install the Postman client.
- Click the Run in Postman button below to open Postman and import the Store Leads API Postman collection.
Swagger API Specification
The Store Leads API specification is available in Swagger/OpenAPI format.
Supported Languages
We haven't published any SDKs yet but the API specification can be used to automatically generate an SDK for a specific programming language. To do so, you'll need to have a working version of swagger-codegen installed and follow the instructions provided by swagger-codegen.
Webhooks
To be notified as soon as new data is added to the site (which happens weekly, normally on a Monday), you can configure webhooks under the Notifications tab of the Account page.