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": "Everything you need to engage and retain your customers. Loyalty program, email, SMS, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CMevhZDaj4cDEAE=.png",
"name": "Marsello: Omnichannel Loyalty",
"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": 384,
"installs": 2926,
"instp": 0.0012197109626837642,
"installs_30d": -57,
"installs_90d": -176,
"reviews_30d": 1
}
}
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-11-08T00:00:00Z",
"body": "Marsello has really improved and took into considerations our product requests. Martin does an excellent job communicating which is rare from other loyalty programs. The shopify integrations have improved. I highly recommend Marsello. We have tried every loyalty program on shopifys app store and they fit our needs best considering we lean heavier on in-store retail vs e-comm.",
"merchant_name": "CARDPOPUSA",
"domains": [
{
"platform_domain": "cardpopusa.myshopify.com",
"name": "cardpopusa.com",
"platform_rank": 93241
}
],
"rating": 5
},
{
"updated_at": "2024-09-17T00:00:00Z",
"body": "Caution: Unreliable Service and Unresponsive Support\n\nWe had a very disappointing experience with this company. After dedicating three months to testing their platform, we encountered numerous bugs and technical issues. Despite this, we were charged in full during that entire period.\n\nIn the first month, we were billed for an API and an additional site, despite not having any additional sites. We raised this issue multiple times but received little to no support. Our main point of contact, Jason McLean, was dismissive of our concerns, repeatedly stating that their company is exceptional and without faults.\n\nUnfortunately, their loyalty program was completely unusable due to persistent bugs, and their customer service was slow to respond. When we requested a refund for the services we couldn’t use, we were told that they do not offer refunds, citing their terms and conditions.\n\nThere is alot more to say about it, but we will leave it here.\n\nWe strongly advise caution if considering this company.",
"merchant_name": "paintlab.ie",
"domains": [
{
"platform_domain": "paintlablimited.myshopify.com",
"name": "www.paintlab.ie",
"platform_rank": 168412
}
],
"rating": 1
}
]
}
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.khy.com'
Example Response
{
"domain": {
"theme": {
"name": "dawn",
"style": "Unknown",
"vendor": "Shopify",
"version": "1.0.0",
"theme_store_id": 887
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.khy.com",
"city": "Culver City",
"last_updated_at": "2024-11-13T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.khy.com/pages/contact",
"country_code": "US",
"currency_code": "USD",
"title": "Khy by Kylie Jenner",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://www.khy.com/cdn/shop/files/favicon-32x32.png?crop=center\u0026height=32\u0026v=1696349810\u0026width=32",
"brand_advocate_page": "https://www.khy.com/pages/collaborators",
"faq_page": "https://www.khy.com/pages/faq",
"returns_page": "https://www.khy.com/pages/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://www.khy.com/pages/about-us",
"platform_domain": "ccdc23.myshopify.com",
"last_plan_change_at": "2024-08-19T00:00:00",
"platform": "shopify",
"location": "Culver City, CA, USA",
"og_image": "https://cdn.shopify.com/s/files/1/0781/1314/5147/files/Khy-LightLogo-1200x628.jpg?v=1696359459",
"max_product_published_at": "2024-11-13T00:00:00",
"merchant_name": "Khy",
"avg_price_formatted": "$73.26",
"created_at": "2023-09-29T00:00:00",
"name": "www.khy.com",
"description": "Upgrade your wardrobe with Khy by Kylie Jenner. Shop best sellers like the Smooth Stretch Capri Catsuit \u0026 more. Experience the latest in fashion \u0026 style",
"contact_info": [
{
"description": "http://khy.com",
"followers": 1,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/khybrand"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/khybrand"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/khy"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/kyliejenner"
},
{
"source": "/",
"type": "email",
"value": "support@khy.com"
},
{
"description": "See what Khy (Khybrand) has discovered on Pinterest, the world's biggest collection of ideas.",
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/khybrand"
},
{
"description": "Share your videos with friends, family, and the world",
"followers": 139,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@Khybrand"
},
{
"source": "/",
"type": "linkedin",
"value": "https://www.linkedin.com/company/khy-by-kylie-jenner"
},
{
"description": "Khy x Atlein now live",
"followers": 114600,
"followers_90d": 10469,
"likes": 207600,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@khy"
},
{
"source": "/pages/terms",
"type": "phone",
"value": "+18556265655"
}
],
"aliases": [
"khy.is"
],
"apps": [
{
"installed_at": "2024-04-11T17:38:16Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/accessibly-app",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Make your store more accessible and inclusive with Accessibly. We help you with ADA/WCAG compliance.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/eaa87116bccafa4ba6349f0628498edb/icon/CJX_77f0lu8CEAE=.png",
"name": "Accessibly",
"token": "accessibly-app",
"platform": "shopify",
"vendor_name": "On The Map Marketing",
"vendor_url": "https://apps.shopify.com/partners/on-the-map-marketing",
"vendor_email": "hello@accessiblyapp.com",
"vendor_website": "https://accessiblyapp.com/",
"vendor_address": "200 SE 1st St #502, Miami, FL, 33131, US",
"id": "1.accessibly-app",
"created_at": "2019-09-13T00:00:00",
"plans": [
{
"name": "Regular",
"monthly_cost": "$5/month",
"monthly_cost_cents": 500
},
{
"name": "Professional",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
}
],
"categories": [
"accessibility"
],
"review_count": 27,
"installs": 11074,
"instp": 0.004616226657812716,
"installs_30d": 226,
"installs_90d": 825
},
{
"installed_at": "2023-11-22T12:26:00Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/back-in-stock",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Drive Revenue with Back in Stock Notifications to Avoid Lost Sales from Sold Out Products",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/08346a36a0a313120feec14003bedbc3/icon/CI35i4-zvvQCEAE=.png",
"name": "Back in Stock: Restock Alerts",
"token": "back-in-stock",
"platform": "shopify",
"vendor_name": "Back in Stock",
"vendor_url": "https://apps.shopify.com/partners/yellow-robot",
"vendor_email": "support@backinstock.org",
"vendor_website": "https://backinstock.org/",
"vendor_address": "5201 Eden Ave, Suite 300, Edina, MN, 55436, US",
"id": "1.back-in-stock",
"created_at": "2011-05-18T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Lite Plan",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Small Business",
"monthly_cost": "$49/month",
"monthly_cost_cents": 4900
},
{
"name": "Medium Store",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
}
],
"categories": [
"stock alerts",
"email marketing"
],
"integrates_with": [
"Shopify Flow",
"MailChimp",
"Klaviyo",
"Constant Contact",
"Campaign Monitor",
"Zapier",
"Cross Sell \u0026 Cart Upsell"
],
"review_count": 860,
"installs": 28162,
"instp": 0.011739405376315848,
"installs_30d": 43,
"installs_90d": -235,
"reviews_30d": 8,
"reviews_90d": 26
},
{
"installed_at": "2024-05-15T06:30:14Z",
"average_rating": "2.2",
"app_store_url": "https://apps.shopify.com/bazaarvoice-reviews-photos-social",
"state": "Active",
"description": "Collect ratings, reviews, and photos and amplify their impact across your website, social, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/16e28f7698fddac56db2a803783cf974/icon/CN_DsfeR8voCEAE=.png",
"name": "Bazaarvoice Reviews \u0026 Photos",
"token": "bazaarvoice-reviews-photos-social",
"platform": "shopify",
"vendor_name": "Bazaarvoice Inc.",
"vendor_url": "https://apps.shopify.com/partners/bazaarvoice-inc1",
"vendor_email": "support@bazaarvoice.com",
"vendor_website": "https://bazaarvoice.com/",
"vendor_address": "10901 Stonelake Blvd, Austin, TX, 78759, US",
"id": "1.bazaarvoice-reviews-photos-social",
"created_at": "2022-11-04T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"product reviews",
"social trust - other"
],
"integrates_with": [
"Checkout",
"Facebook",
"Instagram",
"Google",
"Pinterest",
"TikTok"
],
"review_count": 4,
"installs": 2088,
"instp": 0.0008703884108283321,
"installs_30d": 34,
"installs_90d": 89
},
{
"installed_at": "2024-08-19T16:17:22Z",
"average_rating": "4.4",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize checkout with App Blocks, Custom Discounts, Customizations, \u0026 more",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0d93ad03058a8f1d59487bd527ab382/icon/CNmn4qi31YIDEAE=.png",
"name": "Checkout Blocks",
"token": "checkout-blocks",
"platform": "shopify",
"vendor_name": "Shopify",
"vendor_url": "https://apps.shopify.com/partners/shopify",
"vendor_email": "support@checkoutblocks.com",
"vendor_website": "https://www.checkoutblocks.com",
"vendor_address": "151 O’Connor St, Ottawa, ON, ON, CA",
"id": "1.checkout-blocks",
"created_at": "2022-09-28T00:00:00",
"categories": [
"checkout - other",
"discounts"
],
"integrates_with": [
"Checkout"
],
"review_count": 59,
"installs": 7137,
"instp": 0.00297507762839167,
"installs_30d": 888,
"installs_90d": 1934,
"reviews_90d": 8
},
{
"removed_at": "2024-11-20T15:43:10.549459838Z",
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "2.9",
"app_store_url": "https://apps.shopify.com/geolocation",
"state": "Inactive",
"description": "Boost global sales with country and language recommendations.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/eab6d2b98a02140e9655960f787ceb07/icon/CPKTxIqoh4ADEAE=.png",
"name": "Geolocation",
"token": "geolocation",
"platform": "shopify",
"vendor_name": "Shopify",
"vendor_url": "https://apps.shopify.com/partners/shopify",
"vendor_email": "support@shopify.com",
"vendor_website": "https://www.shopify.com/",
"vendor_address": "151 O’Connor St, Ottawa, ON, ON, CA",
"id": "1.geolocation",
"created_at": "2020-02-04T00:00:00",
"categories": [
"internationalization - other"
],
"review_count": 386,
"installs": 321327,
"instp": 0.13394602341294803,
"installs_30d": -5225,
"installs_90d": -26898
},
{
"installed_at": "2024-10-30T18:26:56Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/gtm-datalayer-by-elevar",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Never miss a conversion with Elevar's Server-Side tracking. Improve ad ROAS and lower your CPMs.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/e6748a47b626678883beaf91f28ca7e3/icon/COywqozq1vwCEAE=.jpeg",
"name": "Elevar Conversion Tracking",
"token": "gtm-datalayer-by-elevar",
"platform": "shopify",
"vendor_name": "Elevar",
"vendor_url": "https://apps.shopify.com/partners/elevar",
"vendor_email": "help@getelevar.com",
"vendor_website": "https://www.getelevar.com/",
"vendor_address": "520 Folly Road, Suite 25, Charleston, SC, 29412, US",
"id": "1.gtm-datalayer-by-elevar",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "Elevar Starter",
"monthly_cost": "Free to install"
},
{
"name": "Elevar Essentials",
"monthly_cost": "$150/month",
"monthly_cost_cents": 15000
},
{
"name": "Elevar Growth",
"monthly_cost": "$350/month",
"monthly_cost_cents": 35000
},
{
"name": "Elevar Business",
"monthly_cost": "$750/month",
"monthly_cost_cents": 75000
}
],
"categories": [
"ads",
"analytics"
],
"integrates_with": [
"Checkout",
"Google Ads and GA4",
"Web Pixel API",
"Facebook Conversion API (CAPI)",
"iubenda Onetrust and Cookiebot",
"Google Tag Manager (GTM)",
"Klaviyo"
],
"review_count": 149,
"installs": 8063,
"instp": 0.003361083216718794,
"installs_30d": 226,
"installs_90d": 399,
"reviews_30d": 3,
"reviews_90d": 11
},
{
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "4.3",
"app_store_url": "https://apps.shopify.com/helpdesk",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Empowering brands to grow through AI-powered CX",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d783d0d0ded4ab7a13c20f47533819a3/icon/CNOe1Y-4vocDEAE=.png",
"name": "Gorgias",
"token": "helpdesk",
"platform": "shopify",
"vendor_name": "Gorgias Inc.",
"vendor_url": "https://apps.shopify.com/partners/gorgias",
"vendor_email": "support@gorgias.com",
"vendor_website": "https://www.gorgias.com",
"vendor_address": "180 Sansome Street, Suite 1800, San Francisco, CA, 94104, US",
"id": "1.helpdesk",
"created_at": "2017-03-01T00:00:00",
"plans": [
{
"name": "Starter plan",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Basic plan",
"monthly_cost": "$60/month",
"monthly_cost_cents": 6000
},
{
"name": "Pro plan",
"monthly_cost": "$360/month",
"monthly_cost_cents": 36000
},
{
"name": "Advanced plan",
"monthly_cost": "$900/month",
"monthly_cost_cents": 90000
}
],
"categories": [
"chat",
"helpdesk"
],
"integrates_with": [
"Shopify Flow",
"Klaviyo",
"Yotpo",
"Attentive",
"Recharge",
"Aircall",
"20+ Integrations"
],
"review_count": 704,
"installs": 19779,
"instp": 0.00824492929969999,
"installs_30d": 301,
"installs_90d": 1304,
"reviews_30d": 1,
"reviews_90d": 5
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 2966,
"installs": 335891,
"instp": 0.1400170659490131,
"installs_30d": 11950,
"installs_90d": 19692,
"reviews_30d": 109,
"reviews_90d": 336
},
{
"installed_at": "2024-10-16T23:36:14Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/locksmith",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Access control for the Online Store channel. Lock any content; grant access with passcodes and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9beb0d2bacfb9677b62fefcbfe1facee/icon/CMP0uqnMg_sCEAE=.jpeg",
"name": "Locksmith",
"token": "locksmith",
"platform": "shopify",
"vendor_name": "Lightward",
"vendor_url": "https://apps.shopify.com/partners/lightward",
"vendor_email": "team@uselocksmith.com",
"vendor_website": "https://lightward.com",
"vendor_address": "1942 Broadway, STE 314C, Boulder, CO, 80302-5233, US",
"id": "1.locksmith",
"created_at": "2014-10-29T00:00:00",
"plans": [
{
"name": "Basic Shopify",
"monthly_cost": "$12/month",
"monthly_cost_cents": 1200
},
{
"name": "Shopify",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "Advanced Shopify",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Shopify Plus",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"accounts and login"
],
"integrates_with": [
"Checkout"
],
"review_count": 493,
"installs": 15948,
"instp": 0.006647966655119847,
"installs_30d": 1092,
"installs_90d": 1092,
"reviews_90d": 3
},
{
"installed_at": "2024-04-19T03:37:05Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/okendo-reviews",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "The customer marketing platform with Reviews, Surveys, Quizzes, Referrals \u0026 Loyalty all in one place",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/fe55626671bd5da73785c606c2b0752f/icon/CNKRrIWatfoCEAE=.png",
"name": "Okendo: Reviews \u0026 Loyalty",
"token": "okendo-reviews",
"platform": "shopify",
"vendor_name": "Okendo",
"vendor_url": "https://apps.shopify.com/partners/okendo",
"vendor_email": "support@okendo.io",
"vendor_website": "https://www.okendo.io/",
"vendor_address": "Level 13, 333 George St, Sydney, NSW, 2000, AU",
"id": "1.okendo-reviews",
"created_at": "2018-06-12T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Essential",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Growth",
"monthly_cost": "$119/month",
"monthly_cost_cents": 11900
}
],
"categories": [
"product reviews",
"loyalty and rewards"
],
"integrates_with": [
"Shopify Flow",
"Checkout",
"Shopify POS",
"Gorgias",
"Klaviyo",
"Postscript",
"Attentive",
"Google",
"Meta"
],
"review_count": 1035,
"installs": 15294,
"instp": 0.0063753449977052255,
"installs_30d": 509,
"installs_90d": 1540,
"reviews_30d": 44,
"reviews_90d": 91
},
{
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "0",
"app_store_url": "https://apps.shopify.com/optoro-returns",
"state": "Active",
"description": "Take the headache out of returns. Save the sale with exchanges, offer drop-offs, and home pickups.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9bd53b126eb0339610110c1f0e0b4694/icon/COWG2fyJrvkCEAE=.png",
"name": "Optoro Returns \u0026 Exchanges",
"token": "optoro-returns",
"platform": "shopify",
"vendor_name": "Optoro",
"vendor_url": "https://apps.shopify.com/partners/optoro1",
"vendor_email": "support@optoro.com",
"vendor_website": "https://www.optoro.com",
"vendor_address": "1001 G St NW, Washington, DC, 20001, US",
"id": "1.optoro-returns",
"created_at": "2022-09-22T00:00:00",
"categories": [
"returns and exchanges",
"orders - other"
],
"installs": 11,
"instp": 0.0000045853795589615195,
"installs_90d": -1
},
{
"installed_at": "2024-10-10T01:20:58Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/route",
"state": "Active",
"description": "Deliver premium post-purchase experiences—get shipping protection, tracking \u0026 more",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/7115601f61e3feae998d828bd6f6ecf3/icon/CPjqsrrijfwCEAE=.jpeg",
"name": "Route Protection and Tracking",
"token": "route",
"platform": "shopify",
"vendor_name": "RouteApp LLC",
"vendor_url": "https://apps.shopify.com/partners/routeapp-llc",
"vendor_email": "merchantsupport@route.com",
"vendor_website": "https://route.com/merchants/",
"vendor_address": "1441 W Innovation Way, Suite 200, Lehi, UT, 84043, US",
"id": "1.route",
"created_at": "2019-01-17T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"order tracking",
"warranties and insurance"
],
"integrates_with": [
"Checkout"
],
"review_count": 415,
"installs": 14091,
"instp": 0.005873871215029707,
"installs_30d": 142,
"installs_90d": -210,
"reviews_90d": 2
},
{
"installed_at": "2024-07-29T19:28:55Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/triplewhale-1",
"state": "Active",
"description": "Triple Whale brings the metrics \u0026 attribution that matter most into one easy-to-use dashboard.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
"name": "Triple Whale Analytics",
"token": "triplewhale-1",
"platform": "shopify",
"vendor_name": "Triple Whale",
"vendor_url": "https://apps.shopify.com/partners/cherniv",
"vendor_email": "support@triplewhale.com",
"vendor_website": "https://www.trytriplewhale.com/",
"vendor_address": "266 N 5th street, Columbus, OH, 43215, US",
"id": "1.triplewhale-1",
"created_at": "2020-12-04T00:00:00",
"plans": [
{
"name": "Founders Dash",
"monthly_cost": "Free"
},
{
"name": "Growth",
"monthly_cost": "$1,290\n \n \n / year"
},
{
"name": "Pro",
"monthly_cost": "$1,990\n \n \n / year"
},
{
"name": "Premium",
"monthly_cost": "$2,790\n \n \n / year"
}
],
"categories": [
"analytics"
],
"integrates_with": [
"Checkout",
"Facebook",
"Google Ads",
"Klaviyo",
"TikTok",
"Gorgias",
"Recharge"
],
"review_count": 70,
"installs": 24211,
"instp": 0.010092420409274303,
"installs_30d": 680,
"installs_90d": 1620,
"reviews_30d": 16,
"reviews_90d": 18
}
],
"categories": [
"/Apparel",
"/Apparel/Women's Clothing",
"/Apparel/Footwear"
],
"technologies": [
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1541306
},
{
"installed_at": "2024-02-15T04:15:31Z",
"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": 2238531
},
{
"installed_at": "2024-05-15T06:30:14Z",
"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": 5466
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 4418540
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 3710226
},
{
"installed_at": "2024-10-30T18:26:56Z",
"name": "Elevar",
"description": "Marketers, analysts, and Shopify brand owners use Elevar for accurate conversion tracking.",
"vendor_url": "https://www.getelevar.com",
"icon_url": "https://storeleads.app/img/tech/elevar.png",
"installs": 9874
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Global-e",
"description": "Grow your international sales quickly and simply in more than 200 destinations with Global-e’s end-to-end cross-border solutions.",
"vendor_url": "https://www.global-e.com",
"icon_url": "https://storeleads.app/img/tech/globale.png",
"installs": 2315
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 2853710
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 3992634
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1307662
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 4192678
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Gorgias",
"description": "Gorgias provides flawless customer service for ecommerce stores",
"vendor_url": "https://www.gorgias.com/",
"icon_url": "https://storeleads.app/img/tech/gorgias.png",
"installs": 21787
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 443659
},
{
"installed_at": "2024-04-19T03:37:05Z",
"name": "Okendo",
"description": "The new standard in customer reviews.",
"vendor_url": "https://www.okendo.io",
"icon_url": "https://storeleads.app/img/tech/okendo.png",
"installs": 15364
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Optoro",
"description": "The returns platform that does it all.",
"vendor_url": "https://www.optoro.com",
"icon_url": "https://storeleads.app/img/tech/optoro.png",
"installs": 13
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1378634
},
{
"installed_at": "2024-10-10T01:20:58Z",
"name": "Route",
"description": "Route empowers brands to be intentional about their post-purchase experience with visual order tracking, package protection, effortless claim-filing, and the world’s first universal order history.",
"vendor_url": "https://route.com/merchants",
"icon_url": "https://storeleads.app/img/tech/route.png",
"installs": 14104
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1287921
},
{
"installed_at": "2024-11-13T17:19:33Z",
"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": 565000
},
{
"installed_at": "2024-07-29T19:28:55Z",
"name": "Triple Whale",
"description": "Easily manage and automate analytics, attribution, merchandising, forecasting \u0026 more — in the palm of your hand.",
"vendor_url": "https://www.triplewhale.com",
"icon_url": "https://storeleads.app/img/tech/triplewhale.png",
"installs": 24419
}
],
"collections": [
"golden-hour",
"khy-x-namilia",
"shorts-skirts",
"drop-001",
"ioannes",
"atlein",
"drop-007-poplin",
"drop-006",
"drop-1",
"shop-all",
"best-sellers",
"bottoms",
"dresses",
"drop-005",
"sueded",
"all-swim",
"sweats-and-leggings",
"vacation-shop",
"drop-002",
"drop-003",
"satin-swim",
"tees-and-tops",
"drop005-denim-bottoms",
"outerwear",
"khy-x-entire-studios",
"mesh-1",
"drop-004"
],
"cluster_domains": [
"www.khy.com",
"khy.co.il"
],
"features": [
"Shopify POS",
"Returns Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"International Shipping",
"Signature Required",
"FAQ Page",
"Brand Advocate Page",
"Has Blog"
],
"shipping_carriers": [
"UPS"
],
"ships_to_countries": [
"Andorra",
"United Arab Emirates",
"Antigua and Barbuda",
"Anguilla",
"Albania",
"Armenia",
"Angola",
"Argentina",
"Austria",
"Australia",
"Aruba",
"Azerbaijan",
"Bosnia and Herzegovina",
"Barbados",
"Bangladesh",
"Belgium",
"Burkina Faso",
"Bulgaria",
"Bahrain",
"Burundi",
"Benin",
"Saint Barthélemy",
"Bermuda",
"Brunei Darussalam",
"Bolivia (Plurinational State of)",
"Brazil",
"Bahamas",
"Bhutan",
"Botswana",
"Belize",
"Canada",
"Congo",
"Switzerland",
"Côte d'Ivoire",
"Cook Islands",
"Chile",
"Cameroon",
"China",
"Colombia",
"Costa Rica",
"Cabo Verde",
"Curaçao",
"Cyprus",
"Czech Republic",
"Germany",
"Djibouti",
"Denmark",
"Dominica",
"Dominican Republic",
"Algeria",
"Ecuador",
"Estonia",
"Egypt",
"Spain",
"Ethiopia",
"Finland",
"Fiji",
"Falkland Islands (the) [Malvinas]",
"Faroe Islands",
"France",
"Gabon",
"United Kingdom",
"Grenada",
"Georgia",
"French Guiana",
"Guernsey",
"Ghana",
"Gibraltar",
"Greenland",
"Gambia",
"Guinea",
"Guadeloupe",
"Equatorial Guinea",
"Greece",
"Guatemala",
"Guinea-Bissau",
"Guyana",
"Hong Kong",
"Honduras",
"Croatia",
"Haiti",
"Hungary",
"Indonesia",
"Ireland",
"Israel",
"Isle of Man",
"India",
"Iceland",
"Italy",
"Jersey",
"Jamaica",
"Jordan",
"Japan",
"Kenya",
"Kyrgyzstan",
"Cambodia",
"Kiribati",
"Comoros",
"Saint Kitts and Nevis",
"Korea (the Republic of)",
"Kuwait",
"Cayman Islands",
"Kazakhstan",
"Lao People's Democratic Republic",
"Lebanon",
"Saint Lucia",
"Liechtenstein",
"Sri Lanka",
"Liberia",
"Lesotho",
"Lithuania",
"Luxembourg",
"Latvia",
"Morocco",
"Monaco",
"Moldova (the Republic of)",
"Montenegro",
"Saint Martin (French part)",
"Madagascar",
"Macedonia (the former Yugoslav Republic of)",
"Mongolia",
"Macao",
"Martinique",
"Mauritania",
"Montserrat",
"Malta",
"Mauritius",
"Maldives",
"Malawi",
"Mexico",
"Malaysia",
"Mozambique",
"Namibia",
"New Caledonia",
"Nigeria",
"Nicaragua",
"Netherlands",
"Norway",
"Nepal",
"Nauru",
"Niue",
"New Zealand",
"Oman",
"Panama",
"Peru",
"French Polynesia",
"Papua New Guinea",
"Philippines",
"Pakistan",
"Poland",
"Portugal",
"Paraguay",
"Qatar",
"Réunion",
"Romania",
"Serbia",
"Rwanda",
"Saudi Arabia",
"Solomon Islands",
"Seychelles",
"Sweden",
"Singapore",
"Saint Helena, Ascension and Tristan da Cunha",
"Slovenia",
"Slovakia",
"Sierra Leone",
"San Marino",
"Senegal",
"Suriname",
"Sao Tome and Principe",
"El Salvador",
"Sint Maarten (Dutch part)",
"Swaziland",
"Turks and Caicos Islands",
"Chad",
"Togo",
"Thailand",
"Timor-Leste",
"Turkmenistan",
"Tunisia",
"Tonga",
"Trinidad and Tobago",
"Tuvalu",
"Taiwan",
"Tanzania, United Republic of",
"Uganda",
"United States",
"Uruguay",
"Uzbekistan",
"Holy See",
"Saint Vincent and the Grenadines",
"Venezuela (Bolivarian Republic of)",
"Virgin Islands (British)",
"Vietnam",
"Vanuatu",
"Wallis and Futuna",
"Samoa",
"Mayotte",
"South Africa",
"Zambia",
"Zimbabwe"
],
"rank_percentile": 0.0005,
"rank": 68,
"latitude": 34.0211224,
"longitude": -118.3964665,
"estimated_page_views": 1442265,
"estimated_sales": 145909192,
"estimated_sales_yearly": 1750910304,
"estimated_visits": 393302,
"product_images": 4790,
"product_images_created_365": 4705,
"product_images_created_90": 953,
"product_images_created_30": 256,
"employee_count": 30,
"cc_rank": 2905323,
"cc_centrality": 1726794,
"product_count": 599,
"max_price": 50000,
"max_price_usd": 50000,
"max_weight": 9979,
"monthly_app_spend": 2700,
"min_price": 2500,
"min_price_usd": 2500,
"min_weight": 18,
"variant_count": 5480,
"vendor_count": 10,
"avg_price": 7326,
"avg_price_usd": 7326,
"avg_weight": 590,
"platform_rank": 5
}
}
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.khy.com"]}' 'https://storeleads.app/json/api/v1/all/domain/bulk'
Example Response
{
"domains": [
{
"theme": {
"name": "dawn",
"style": "Unknown",
"vendor": "Shopify",
"version": "1.0.0",
"theme_store_id": 887
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.khy.com",
"city": "Culver City",
"last_updated_at": "2024-11-13T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.khy.com/pages/contact",
"country_code": "US",
"currency_code": "USD",
"title": "Khy by Kylie Jenner",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://www.khy.com/cdn/shop/files/favicon-32x32.png?crop=center\u0026height=32\u0026v=1696349810\u0026width=32",
"brand_advocate_page": "https://www.khy.com/pages/collaborators",
"faq_page": "https://www.khy.com/pages/faq",
"returns_page": "https://www.khy.com/pages/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://www.khy.com/pages/about-us",
"platform_domain": "ccdc23.myshopify.com",
"last_plan_change_at": "2024-08-19T00:00:00",
"platform": "shopify",
"location": "Culver City, CA, USA",
"og_image": "https://cdn.shopify.com/s/files/1/0781/1314/5147/files/Khy-LightLogo-1200x628.jpg?v=1696359459",
"max_product_published_at": "2024-11-13T00:00:00",
"merchant_name": "Khy",
"avg_price_formatted": "$73.26",
"created_at": "2023-09-29T00:00:00",
"name": "www.khy.com",
"description": "Upgrade your wardrobe with Khy by Kylie Jenner. Shop best sellers like the Smooth Stretch Capri Catsuit \u0026 more. Experience the latest in fashion \u0026 style",
"contact_info": [
{
"description": "http://khy.com",
"followers": 1,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/khybrand"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/khybrand"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/khy"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/kyliejenner"
},
{
"source": "/",
"type": "email",
"value": "support@khy.com"
},
{
"description": "See what Khy (Khybrand) has discovered on Pinterest, the world's biggest collection of ideas.",
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/khybrand"
},
{
"description": "Share your videos with friends, family, and the world",
"followers": 139,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@Khybrand"
},
{
"source": "/",
"type": "linkedin",
"value": "https://www.linkedin.com/company/khy-by-kylie-jenner"
},
{
"description": "Khy x Atlein now live",
"followers": 114600,
"followers_90d": 10469,
"likes": 207600,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@khy"
},
{
"source": "/pages/terms",
"type": "phone",
"value": "+18556265655"
}
],
"aliases": [
"khy.is"
],
"apps": [
{
"installed_at": "2024-04-11T17:38:16Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/accessibly-app",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Make your store more accessible and inclusive with Accessibly. We help you with ADA/WCAG compliance.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/eaa87116bccafa4ba6349f0628498edb/icon/CJX_77f0lu8CEAE=.png",
"name": "Accessibly",
"token": "accessibly-app",
"platform": "shopify",
"vendor_name": "On The Map Marketing",
"vendor_url": "https://apps.shopify.com/partners/on-the-map-marketing",
"vendor_email": "hello@accessiblyapp.com",
"vendor_website": "https://accessiblyapp.com/",
"vendor_address": "200 SE 1st St #502, Miami, FL, 33131, US",
"id": "1.accessibly-app",
"created_at": "2019-09-13T00:00:00",
"plans": [
{
"name": "Regular",
"monthly_cost": "$5/month",
"monthly_cost_cents": 500
},
{
"name": "Professional",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
}
],
"categories": [
"accessibility"
],
"review_count": 27,
"installs": 11074,
"instp": 0.004616226657812716,
"installs_30d": 226,
"installs_90d": 825
},
{
"installed_at": "2023-11-22T12:26:00Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/back-in-stock",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Drive Revenue with Back in Stock Notifications to Avoid Lost Sales from Sold Out Products",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/08346a36a0a313120feec14003bedbc3/icon/CI35i4-zvvQCEAE=.png",
"name": "Back in Stock: Restock Alerts",
"token": "back-in-stock",
"platform": "shopify",
"vendor_name": "Back in Stock",
"vendor_url": "https://apps.shopify.com/partners/yellow-robot",
"vendor_email": "support@backinstock.org",
"vendor_website": "https://backinstock.org/",
"vendor_address": "5201 Eden Ave, Suite 300, Edina, MN, 55436, US",
"id": "1.back-in-stock",
"created_at": "2011-05-18T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Lite Plan",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Small Business",
"monthly_cost": "$49/month",
"monthly_cost_cents": 4900
},
{
"name": "Medium Store",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
}
],
"categories": [
"stock alerts",
"email marketing"
],
"integrates_with": [
"Shopify Flow",
"MailChimp",
"Klaviyo",
"Constant Contact",
"Campaign Monitor",
"Zapier",
"Cross Sell \u0026 Cart Upsell"
],
"review_count": 860,
"installs": 28162,
"instp": 0.011739405376315848,
"installs_30d": 43,
"installs_90d": -235,
"reviews_30d": 8,
"reviews_90d": 26
},
{
"installed_at": "2024-05-15T06:30:14Z",
"average_rating": "2.2",
"app_store_url": "https://apps.shopify.com/bazaarvoice-reviews-photos-social",
"state": "Active",
"description": "Collect ratings, reviews, and photos and amplify their impact across your website, social, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/16e28f7698fddac56db2a803783cf974/icon/CN_DsfeR8voCEAE=.png",
"name": "Bazaarvoice Reviews \u0026 Photos",
"token": "bazaarvoice-reviews-photos-social",
"platform": "shopify",
"vendor_name": "Bazaarvoice Inc.",
"vendor_url": "https://apps.shopify.com/partners/bazaarvoice-inc1",
"vendor_email": "support@bazaarvoice.com",
"vendor_website": "https://bazaarvoice.com/",
"vendor_address": "10901 Stonelake Blvd, Austin, TX, 78759, US",
"id": "1.bazaarvoice-reviews-photos-social",
"created_at": "2022-11-04T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"product reviews",
"social trust - other"
],
"integrates_with": [
"Checkout",
"Facebook",
"Instagram",
"Google",
"Pinterest",
"TikTok"
],
"review_count": 4,
"installs": 2088,
"instp": 0.0008703884108283321,
"installs_30d": 34,
"installs_90d": 89
},
{
"installed_at": "2024-08-19T16:17:22Z",
"average_rating": "4.4",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize checkout with App Blocks, Custom Discounts, Customizations, \u0026 more",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0d93ad03058a8f1d59487bd527ab382/icon/CNmn4qi31YIDEAE=.png",
"name": "Checkout Blocks",
"token": "checkout-blocks",
"platform": "shopify",
"vendor_name": "Shopify",
"vendor_url": "https://apps.shopify.com/partners/shopify",
"vendor_email": "support@checkoutblocks.com",
"vendor_website": "https://www.checkoutblocks.com",
"vendor_address": "151 O’Connor St, Ottawa, ON, ON, CA",
"id": "1.checkout-blocks",
"created_at": "2022-09-28T00:00:00",
"categories": [
"checkout - other",
"discounts"
],
"integrates_with": [
"Checkout"
],
"review_count": 59,
"installs": 7137,
"instp": 0.00297507762839167,
"installs_30d": 888,
"installs_90d": 1934,
"reviews_90d": 8
},
{
"removed_at": "2024-11-20T15:43:10.549459838Z",
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "2.9",
"app_store_url": "https://apps.shopify.com/geolocation",
"state": "Inactive",
"description": "Boost global sales with country and language recommendations.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/eab6d2b98a02140e9655960f787ceb07/icon/CPKTxIqoh4ADEAE=.png",
"name": "Geolocation",
"token": "geolocation",
"platform": "shopify",
"vendor_name": "Shopify",
"vendor_url": "https://apps.shopify.com/partners/shopify",
"vendor_email": "support@shopify.com",
"vendor_website": "https://www.shopify.com/",
"vendor_address": "151 O’Connor St, Ottawa, ON, ON, CA",
"id": "1.geolocation",
"created_at": "2020-02-04T00:00:00",
"categories": [
"internationalization - other"
],
"review_count": 386,
"installs": 321327,
"instp": 0.13394602341294803,
"installs_30d": -5225,
"installs_90d": -26898
},
{
"installed_at": "2024-10-30T18:26:56Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/gtm-datalayer-by-elevar",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Never miss a conversion with Elevar's Server-Side tracking. Improve ad ROAS and lower your CPMs.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/e6748a47b626678883beaf91f28ca7e3/icon/COywqozq1vwCEAE=.jpeg",
"name": "Elevar Conversion Tracking",
"token": "gtm-datalayer-by-elevar",
"platform": "shopify",
"vendor_name": "Elevar",
"vendor_url": "https://apps.shopify.com/partners/elevar",
"vendor_email": "help@getelevar.com",
"vendor_website": "https://www.getelevar.com/",
"vendor_address": "520 Folly Road, Suite 25, Charleston, SC, 29412, US",
"id": "1.gtm-datalayer-by-elevar",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "Elevar Starter",
"monthly_cost": "Free to install"
},
{
"name": "Elevar Essentials",
"monthly_cost": "$150/month",
"monthly_cost_cents": 15000
},
{
"name": "Elevar Growth",
"monthly_cost": "$350/month",
"monthly_cost_cents": 35000
},
{
"name": "Elevar Business",
"monthly_cost": "$750/month",
"monthly_cost_cents": 75000
}
],
"categories": [
"ads",
"analytics"
],
"integrates_with": [
"Checkout",
"Google Ads and GA4",
"Web Pixel API",
"Facebook Conversion API (CAPI)",
"iubenda Onetrust and Cookiebot",
"Google Tag Manager (GTM)",
"Klaviyo"
],
"review_count": 149,
"installs": 8063,
"instp": 0.003361083216718794,
"installs_30d": 226,
"installs_90d": 399,
"reviews_30d": 3,
"reviews_90d": 11
},
{
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "4.3",
"app_store_url": "https://apps.shopify.com/helpdesk",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Empowering brands to grow through AI-powered CX",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d783d0d0ded4ab7a13c20f47533819a3/icon/CNOe1Y-4vocDEAE=.png",
"name": "Gorgias",
"token": "helpdesk",
"platform": "shopify",
"vendor_name": "Gorgias Inc.",
"vendor_url": "https://apps.shopify.com/partners/gorgias",
"vendor_email": "support@gorgias.com",
"vendor_website": "https://www.gorgias.com",
"vendor_address": "180 Sansome Street, Suite 1800, San Francisco, CA, 94104, US",
"id": "1.helpdesk",
"created_at": "2017-03-01T00:00:00",
"plans": [
{
"name": "Starter plan",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Basic plan",
"monthly_cost": "$60/month",
"monthly_cost_cents": 6000
},
{
"name": "Pro plan",
"monthly_cost": "$360/month",
"monthly_cost_cents": 36000
},
{
"name": "Advanced plan",
"monthly_cost": "$900/month",
"monthly_cost_cents": 90000
}
],
"categories": [
"chat",
"helpdesk"
],
"integrates_with": [
"Shopify Flow",
"Klaviyo",
"Yotpo",
"Attentive",
"Recharge",
"Aircall",
"20+ Integrations"
],
"review_count": 704,
"installs": 19779,
"instp": 0.00824492929969999,
"installs_30d": 301,
"installs_90d": 1304,
"reviews_30d": 1,
"reviews_90d": 5
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 2966,
"installs": 335891,
"instp": 0.1400170659490131,
"installs_30d": 11950,
"installs_90d": 19692,
"reviews_30d": 109,
"reviews_90d": 336
},
{
"installed_at": "2024-10-16T23:36:14Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/locksmith",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Access control for the Online Store channel. Lock any content; grant access with passcodes and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9beb0d2bacfb9677b62fefcbfe1facee/icon/CMP0uqnMg_sCEAE=.jpeg",
"name": "Locksmith",
"token": "locksmith",
"platform": "shopify",
"vendor_name": "Lightward",
"vendor_url": "https://apps.shopify.com/partners/lightward",
"vendor_email": "team@uselocksmith.com",
"vendor_website": "https://lightward.com",
"vendor_address": "1942 Broadway, STE 314C, Boulder, CO, 80302-5233, US",
"id": "1.locksmith",
"created_at": "2014-10-29T00:00:00",
"plans": [
{
"name": "Basic Shopify",
"monthly_cost": "$12/month",
"monthly_cost_cents": 1200
},
{
"name": "Shopify",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "Advanced Shopify",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Shopify Plus",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"accounts and login"
],
"integrates_with": [
"Checkout"
],
"review_count": 493,
"installs": 15948,
"instp": 0.006647966655119847,
"installs_30d": 1092,
"installs_90d": 1092,
"reviews_90d": 3
},
{
"installed_at": "2024-04-19T03:37:05Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/okendo-reviews",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "The customer marketing platform with Reviews, Surveys, Quizzes, Referrals \u0026 Loyalty all in one place",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/fe55626671bd5da73785c606c2b0752f/icon/CNKRrIWatfoCEAE=.png",
"name": "Okendo: Reviews \u0026 Loyalty",
"token": "okendo-reviews",
"platform": "shopify",
"vendor_name": "Okendo",
"vendor_url": "https://apps.shopify.com/partners/okendo",
"vendor_email": "support@okendo.io",
"vendor_website": "https://www.okendo.io/",
"vendor_address": "Level 13, 333 George St, Sydney, NSW, 2000, AU",
"id": "1.okendo-reviews",
"created_at": "2018-06-12T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Essential",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Growth",
"monthly_cost": "$119/month",
"monthly_cost_cents": 11900
}
],
"categories": [
"product reviews",
"loyalty and rewards"
],
"integrates_with": [
"Shopify Flow",
"Checkout",
"Shopify POS",
"Gorgias",
"Klaviyo",
"Postscript",
"Attentive",
"Google",
"Meta"
],
"review_count": 1035,
"installs": 15294,
"instp": 0.0063753449977052255,
"installs_30d": 509,
"installs_90d": 1540,
"reviews_30d": 44,
"reviews_90d": 91
},
{
"installed_at": "2023-11-04T04:40:27Z",
"average_rating": "0",
"app_store_url": "https://apps.shopify.com/optoro-returns",
"state": "Active",
"description": "Take the headache out of returns. Save the sale with exchanges, offer drop-offs, and home pickups.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9bd53b126eb0339610110c1f0e0b4694/icon/COWG2fyJrvkCEAE=.png",
"name": "Optoro Returns \u0026 Exchanges",
"token": "optoro-returns",
"platform": "shopify",
"vendor_name": "Optoro",
"vendor_url": "https://apps.shopify.com/partners/optoro1",
"vendor_email": "support@optoro.com",
"vendor_website": "https://www.optoro.com",
"vendor_address": "1001 G St NW, Washington, DC, 20001, US",
"id": "1.optoro-returns",
"created_at": "2022-09-22T00:00:00",
"categories": [
"returns and exchanges",
"orders - other"
],
"installs": 11,
"instp": 0.0000045853795589615195,
"installs_90d": -1
},
{
"installed_at": "2024-10-10T01:20:58Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/route",
"state": "Active",
"description": "Deliver premium post-purchase experiences—get shipping protection, tracking \u0026 more",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/7115601f61e3feae998d828bd6f6ecf3/icon/CPjqsrrijfwCEAE=.jpeg",
"name": "Route Protection and Tracking",
"token": "route",
"platform": "shopify",
"vendor_name": "RouteApp LLC",
"vendor_url": "https://apps.shopify.com/partners/routeapp-llc",
"vendor_email": "merchantsupport@route.com",
"vendor_website": "https://route.com/merchants/",
"vendor_address": "1441 W Innovation Way, Suite 200, Lehi, UT, 84043, US",
"id": "1.route",
"created_at": "2019-01-17T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"order tracking",
"warranties and insurance"
],
"integrates_with": [
"Checkout"
],
"review_count": 415,
"installs": 14091,
"instp": 0.005873871215029707,
"installs_30d": 142,
"installs_90d": -210,
"reviews_90d": 2
},
{
"installed_at": "2024-07-29T19:28:55Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/triplewhale-1",
"state": "Active",
"description": "Triple Whale brings the metrics \u0026 attribution that matter most into one easy-to-use dashboard.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
"name": "Triple Whale Analytics",
"token": "triplewhale-1",
"platform": "shopify",
"vendor_name": "Triple Whale",
"vendor_url": "https://apps.shopify.com/partners/cherniv",
"vendor_email": "support@triplewhale.com",
"vendor_website": "https://www.trytriplewhale.com/",
"vendor_address": "266 N 5th street, Columbus, OH, 43215, US",
"id": "1.triplewhale-1",
"created_at": "2020-12-04T00:00:00",
"plans": [
{
"name": "Founders Dash",
"monthly_cost": "Free"
},
{
"name": "Growth",
"monthly_cost": "$1,290\n \n \n / year"
},
{
"name": "Pro",
"monthly_cost": "$1,990\n \n \n / year"
},
{
"name": "Premium",
"monthly_cost": "$2,790\n \n \n / year"
}
],
"categories": [
"analytics"
],
"integrates_with": [
"Checkout",
"Facebook",
"Google Ads",
"Klaviyo",
"TikTok",
"Gorgias",
"Recharge"
],
"review_count": 70,
"installs": 24211,
"instp": 0.010092420409274303,
"installs_30d": 680,
"installs_90d": 1620,
"reviews_30d": 16,
"reviews_90d": 18
}
],
"categories": [
"/Apparel",
"/Apparel/Women's Clothing",
"/Apparel/Footwear"
],
"technologies": [
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1541306
},
{
"installed_at": "2024-02-15T04:15:31Z",
"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": 2238531
},
{
"installed_at": "2024-05-15T06:30:14Z",
"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": 5466
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 4418540
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 3710226
},
{
"installed_at": "2024-10-30T18:26:56Z",
"name": "Elevar",
"description": "Marketers, analysts, and Shopify brand owners use Elevar for accurate conversion tracking.",
"vendor_url": "https://www.getelevar.com",
"icon_url": "https://storeleads.app/img/tech/elevar.png",
"installs": 9874
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Global-e",
"description": "Grow your international sales quickly and simply in more than 200 destinations with Global-e’s end-to-end cross-border solutions.",
"vendor_url": "https://www.global-e.com",
"icon_url": "https://storeleads.app/img/tech/globale.png",
"installs": 2315
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 2853710
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 3992634
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1307662
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 4192678
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Gorgias",
"description": "Gorgias provides flawless customer service for ecommerce stores",
"vendor_url": "https://www.gorgias.com/",
"icon_url": "https://storeleads.app/img/tech/gorgias.png",
"installs": 21787
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 443659
},
{
"installed_at": "2024-04-19T03:37:05Z",
"name": "Okendo",
"description": "The new standard in customer reviews.",
"vendor_url": "https://www.okendo.io",
"icon_url": "https://storeleads.app/img/tech/okendo.png",
"installs": 15364
},
{
"installed_at": "2023-11-04T04:40:27Z",
"name": "Optoro",
"description": "The returns platform that does it all.",
"vendor_url": "https://www.optoro.com",
"icon_url": "https://storeleads.app/img/tech/optoro.png",
"installs": 13
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1378634
},
{
"installed_at": "2024-10-10T01:20:58Z",
"name": "Route",
"description": "Route empowers brands to be intentional about their post-purchase experience with visual order tracking, package protection, effortless claim-filing, and the world’s first universal order history.",
"vendor_url": "https://route.com/merchants",
"icon_url": "https://storeleads.app/img/tech/route.png",
"installs": 14104
},
{
"installed_at": "2023-11-04T04:40:27Z",
"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": 1287921
},
{
"installed_at": "2024-11-13T17:19:33Z",
"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": 565000
},
{
"installed_at": "2024-07-29T19:28:55Z",
"name": "Triple Whale",
"description": "Easily manage and automate analytics, attribution, merchandising, forecasting \u0026 more — in the palm of your hand.",
"vendor_url": "https://www.triplewhale.com",
"icon_url": "https://storeleads.app/img/tech/triplewhale.png",
"installs": 24419
}
],
"collections": [
"dresses",
"sueded",
"all-swim",
"drop-005",
"drop-002",
"drop-003",
"sweats-and-leggings",
"vacation-shop",
"drop005-denim-bottoms",
"outerwear",
"satin-swim",
"tees-and-tops",
"drop-004",
"khy-x-entire-studios",
"mesh-1",
"shorts-skirts",
"drop-001",
"golden-hour",
"khy-x-namilia",
"atlein",
"drop-007-poplin",
"ioannes",
"best-sellers",
"bottoms",
"drop-006",
"drop-1",
"shop-all"
],
"cluster_domains": [
"www.khy.com",
"khy.co.il"
],
"features": [
"Shopify POS",
"Returns Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"International Shipping",
"Signature Required",
"FAQ Page",
"Brand Advocate Page",
"Has Blog"
],
"shipping_carriers": [
"UPS"
],
"ships_to_countries": [
"Andorra",
"United Arab Emirates",
"Antigua and Barbuda",
"Anguilla",
"Albania",
"Armenia",
"Angola",
"Argentina",
"Austria",
"Australia",
"Aruba",
"Azerbaijan",
"Bosnia and Herzegovina",
"Barbados",
"Bangladesh",
"Belgium",
"Burkina Faso",
"Bulgaria",
"Bahrain",
"Burundi",
"Benin",
"Saint Barthélemy",
"Bermuda",
"Brunei Darussalam",
"Bolivia (Plurinational State of)",
"Brazil",
"Bahamas",
"Bhutan",
"Botswana",
"Belize",
"Canada",
"Congo",
"Switzerland",
"Côte d'Ivoire",
"Cook Islands",
"Chile",
"Cameroon",
"China",
"Colombia",
"Costa Rica",
"Cabo Verde",
"Curaçao",
"Cyprus",
"Czech Republic",
"Germany",
"Djibouti",
"Denmark",
"Dominica",
"Dominican Republic",
"Algeria",
"Ecuador",
"Estonia",
"Egypt",
"Spain",
"Ethiopia",
"Finland",
"Fiji",
"Falkland Islands (the) [Malvinas]",
"Faroe Islands",
"France",
"Gabon",
"United Kingdom",
"Grenada",
"Georgia",
"French Guiana",
"Guernsey",
"Ghana",
"Gibraltar",
"Greenland",
"Gambia",
"Guinea",
"Guadeloupe",
"Equatorial Guinea",
"Greece",
"Guatemala",
"Guinea-Bissau",
"Guyana",
"Hong Kong",
"Honduras",
"Croatia",
"Haiti",
"Hungary",
"Indonesia",
"Ireland",
"Israel",
"Isle of Man",
"India",
"Iceland",
"Italy",
"Jersey",
"Jamaica",
"Jordan",
"Japan",
"Kenya",
"Kyrgyzstan",
"Cambodia",
"Kiribati",
"Comoros",
"Saint Kitts and Nevis",
"Korea (the Republic of)",
"Kuwait",
"Cayman Islands",
"Kazakhstan",
"Lao People's Democratic Republic",
"Lebanon",
"Saint Lucia",
"Liechtenstein",
"Sri Lanka",
"Liberia",
"Lesotho",
"Lithuania",
"Luxembourg",
"Latvia",
"Morocco",
"Monaco",
"Moldova (the Republic of)",
"Montenegro",
"Saint Martin (French part)",
"Madagascar",
"Macedonia (the former Yugoslav Republic of)",
"Mongolia",
"Macao",
"Martinique",
"Mauritania",
"Montserrat",
"Malta",
"Mauritius",
"Maldives",
"Malawi",
"Mexico",
"Malaysia",
"Mozambique",
"Namibia",
"New Caledonia",
"Nigeria",
"Nicaragua",
"Netherlands",
"Norway",
"Nepal",
"Nauru",
"Niue",
"New Zealand",
"Oman",
"Panama",
"Peru",
"French Polynesia",
"Papua New Guinea",
"Philippines",
"Pakistan",
"Poland",
"Portugal",
"Paraguay",
"Qatar",
"Réunion",
"Romania",
"Serbia",
"Rwanda",
"Saudi Arabia",
"Solomon Islands",
"Seychelles",
"Sweden",
"Singapore",
"Saint Helena, Ascension and Tristan da Cunha",
"Slovenia",
"Slovakia",
"Sierra Leone",
"San Marino",
"Senegal",
"Suriname",
"Sao Tome and Principe",
"El Salvador",
"Sint Maarten (Dutch part)",
"Swaziland",
"Turks and Caicos Islands",
"Chad",
"Togo",
"Thailand",
"Timor-Leste",
"Turkmenistan",
"Tunisia",
"Tonga",
"Trinidad and Tobago",
"Tuvalu",
"Taiwan",
"Tanzania, United Republic of",
"Uganda",
"United States",
"Uruguay",
"Uzbekistan",
"Holy See",
"Saint Vincent and the Grenadines",
"Venezuela (Bolivarian Republic of)",
"Virgin Islands (British)",
"Vietnam",
"Vanuatu",
"Wallis and Futuna",
"Samoa",
"Mayotte",
"South Africa",
"Zambia",
"Zimbabwe"
],
"rank_percentile": 0.0005,
"rank": 68,
"latitude": 34.0211224,
"longitude": -118.3964665,
"estimated_page_views": 1442265,
"estimated_sales": 145909192,
"estimated_sales_yearly": 1750910304,
"estimated_visits": 393302,
"product_images": 4790,
"product_images_created_365": 4705,
"product_images_created_90": 953,
"product_images_created_30": 256,
"employee_count": 30,
"cc_rank": 2905323,
"cc_centrality": 1726794,
"product_count": 599,
"max_price": 50000,
"max_price_usd": 50000,
"max_weight": 9979,
"monthly_app_spend": 2700,
"min_price": 2500,
"min_price_usd": 2500,
"min_weight": 18,
"variant_count": 5480,
"vendor_count": 10,
"avg_price": 7326,
"avg_price_usd": 7326,
"avg_weight": 590,
"platform_rank": 5
}
]
}
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.khy.com/app_reviews'
Example Response
{
"reviews": [
{
"app": {
"app_store_url": "https://apps.shopify.com/marsello",
"name": "Marsello: Omnichannel Loyalty",
"vendor_name": "Marsello",
"id": "1.marsello"
},
"updated_at": "2024-11-08T00:00:00Z",
"body": "Marsello has really improved and took into considerations our product requests. Martin does an excellent job communicating which is rare from other loyalty programs. The shopify integrations have improved. I highly recommend Marsello. We have tried every loyalty program on shopifys app store and they fit our needs best considering we lean heavier on in-store retail vs e-comm.",
"merchant_name": "CARDPOPUSA",
"domains": [
{
"platform_domain": "cardpopusa.myshopify.com",
"name": "cardpopusa.com",
"platform_rank": 93241
}
],
"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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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
- convertize
- corksy
- crystalcommerce
- cscart
- custom
- cyberbiz
- deliverybizpro
- demandware
- digitalriver
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- eproshopping
- etsypattern
- expandcart
- f1
- farmacieinitalia
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- funpinpin
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- graphy
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- 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
- ribbn
- 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
- shopx
- 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
- topline
- 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
- xshoppy
- yahoo
- yampi
- youcan
- zammit
- zencart
- zenler
- 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
- convertize
- corksy
- crystalcommerce
- cscart
- custom
- cyberbiz
- deliverybizpro
- demandware
- digitalriver
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- eproshopping
- etsypattern
- expandcart
- f1
- farmacieinitalia
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- funpinpin
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- graphy
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- 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
- ribbn
- 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
- shopx
- 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
- topline
- 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
- xshoppy
- yahoo
- yampi
- youcan
- zammit
- zencart
- zenler
- 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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
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) |
dtpr,rank | TrustPilot Rating (Asc) |
-dtpr,rank | TrustPilot Rating (Desc) |
dtprc,rank | TrustPilot Reviews (Asc) |
-dtprc,rank | TrustPilot Reviews (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": 2,
"avg_rating": 3
},
"cluster_best_ranked": "cava.com",
"last_updated_at": "2024-11-12T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"title": "Mediterranean Lunch, Order, \u0026 Pickup | CAVA",
"state": "Active",
"icon": "https://cava.com/favicon.ico",
"career_page": "https://cava.com/careers",
"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": "/locations",
"type": "email",
"value": "houston@cava.com"
},
{
"type": "linkedin",
"value": "http://www.linkedin.com/company/cava-"
}
],
"aliases": [
"www.cavagrill.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": 157553
},
{
"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": 4418540
},
{
"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": 3710226
},
{
"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": 4888
},
{
"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": 2712187
},
{
"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": 2853710
},
{
"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": 3992634
},
{
"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": 4192678
},
{
"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": 818
},
{
"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": 62669
},
{
"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": 460576
},
{
"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": 185
},
{
"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": 6400
},
{
"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": 565000
},
{
"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": 6958
},
{
"installed_at": "2023-07-04T20:40:37Z",
"name": "Yext",
"description": "Deliver the right information at every stage of the customer journey.",
"vendor_url": "https://www.yext.com/",
"icon_url": "https://storeleads.app/img/tech/yext.png",
"installs": 260
}
],
"cluster_domains": [
"cava.com",
"www.cava.tn",
"www.cava.gr",
"www.cava.boutique",
"www.cava.fi",
"www.cava.dk",
"www.cava.pa",
"www.cava.com.co",
"cava.fr",
"cava.vn",
"cava.lima-city.de",
"www.cava.lima-city.de",
"cava.com.uy",
"cava.media",
"catering.cava.com"
],
"features": [
"Has iOS App",
"Has Android App",
"Wholesale/Retailers Page",
"Career Page",
"Headless",
"Has CMS"
],
"redirects_to": [
"cava.com"
],
"rank_percentile": 0.0024,
"rank": 333,
"platform_rank_percentile": 0.014,
"estimated_page_views": 32985099,
"estimated_sales": 2780826705,
"estimated_sales_yearly": 33369920460,
"estimated_visits": 8994970,
"employee_count": 1192,
"cc_rank": 230555,
"cc_centrality": 78092,
"product_count": 35,
"platform_rank": 229
},
{
"cluster_best_ranked": "www.americanmeadows.com",
"city": "Shelburne",
"last_updated_at": "2024-11-11T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.americanmeadows.com/content/contact-us",
"country_code": "US",
"title": "Wildflower Seeds, Flower Bulbs, Perennials",
"administrative_area_level_1": "Vermont",
"state": "Active",
"icon": "https://www.americanmeadows.com/meta-icons/apple-touch-icon.png",
"faq_page": "https://www.americanmeadows.com/content/wildflowers/how-to/choose-wildflower-seeds",
"region": "Americas",
"language_code": "en",
"about_us": "https://www.americanmeadows.com/content/planting-flower-bulbs/about-bulbs-in-spring",
"tracking_page": "https://www.americanmeadows.com/trackorder",
"platform": "magento",
"location": "Shelburne, VT, USA",
"og_image": "https://assets.americanmeadows.com/media/wysiwyg/AMI-Homepage-FY25-Regional-A-80_1__1.jpg",
"merchant_name": "American Meadows, Inc",
"keywords": "wildflower seeds, flower bulbs, wildflower seed, bulbs, wildflowers, flower bulb sale, perennial, perennial flowers, flower seed packets, perennials, gardening, flowering perennials, native wildflowers, wildflower photos, perennial plants, spring bulbs, ornamental grasses, ferns, gardening tips, how to, flowering bulbs for sale, fall bulbs, wild flower gardens, American Meadows, planting instructions, gardening tips",
"created_at": "2018-11-30T00:00:00",
"name": "www.americanmeadows.com",
"description": "American Meadows has been supplying gardeners with the best wildflower seeds, perennials, bulbs and how-to information since 1981. 100% Guaranteed.",
"contact_info": [
{
"description": "Meadowscaping Makes it Better! Welcome to the Meadowverse.",
"followers": 1,
"posts": 2924,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/americanmeadows"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/AmericanMeadows"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/americanmeadows"
},
{
"source": "/",
"type": "email",
"value": "helpdesk@americanmeadows.com"
},
{
"description": "American Meadows | Meadowscaping Makes It Better | It's time to rethink the traditional American lawn and transform our spaces for the better. Dig in!",
"followers": 22700,
"posts": 16841,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/americanmeadows"
},
{
"description": "Share your videos with friends, family, and the world",
"followers": 2050,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/americanmeadows"
},
{
"source": "/",
"type": "linkedin",
"value": "https://www.linkedin.com/company/american-meadows-inc"
}
],
"aliases": [
"www.am-retail.com"
],
"categories": [
"/Home \u0026 Garden/Gardening \u0026 Landscaping",
"/Business \u0026 Industrial/Agriculture \u0026 Forestry"
],
"technologies": [
{
"installed_at": "2020-01-10T08:04:22Z",
"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": 157553
},
{
"installed_at": "2023-08-16T01:27:28Z",
"name": "Cloudfront CDN",
"description": "Fast, highly secure and programmable content delivery network.",
"vendor_url": "https://aws.amazon.com/cloudfront",
"icon_url": "https://storeleads.app/img/tech/aws.png",
"installs": 840217
},
{
"installed_at": "2024-09-05T07:17:47Z",
"name": "Convert",
"description": "Optimize for Better Site Experiences.",
"vendor_url": "https://www.convert.com",
"icon_url": "https://storeleads.app/img/tech/convert.png",
"installs": 2332
},
{
"installed_at": "2023-09-15T17:17:59Z",
"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": 42135
},
{
"installed_at": "2022-12-22T08:34: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": 2712187
},
{
"installed_at": "2023-01-25T14:57:25Z",
"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": 2853710
},
{
"installed_at": "2022-10-20T01:06:00Z",
"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": 3992634
},
{
"installed_at": "2020-01-10T08:04:22Z",
"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": 4192678
},
{
"installed_at": "2023-02-15T22:28:26Z",
"name": "LinkedIn Insight Tag",
"description": "LinkedIn conversion tracking is an analytical function powered by the LinkedIn Insight Tag. Conversions are actions a member makes that are valuable to your business. Conversion tracking gathers insights into post-click and view-through conversions of your LinkedIn ads campaigns, giving you the ability to measure the impact and ROI of your ads.",
"vendor_url": "https://www.linkedin.com/help/linkedin/answer/67513/linkedin-conversion-tracking-overview?lang=en",
"icon_url": "https://storeleads.app/img/tech/linkedin.png",
"installs": 68331
},
{
"installed_at": "2023-11-29T00:32:29Z",
"name": "Microsoft Clarity",
"description": "Clarity is a free tool that captures how people use your site. Setup is easy and you'll start getting data in minutes.",
"vendor_url": "https://clarity.microsoft.com",
"icon_url": "https://storeleads.app/img/tech/microsoft.png",
"installs": 285305
},
{
"installed_at": "2023-08-16T01:27:28Z",
"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": 62669
},
{
"installed_at": "2020-06-14T23:17:57Z",
"name": "Noibu",
"description": "Find errors and increase sales by automating critical error detection for your ecommerce website.",
"vendor_url": "https://www.noibu.com",
"icon_url": "https://storeleads.app/img/tech/noibu.png",
"installs": 1346
},
{
"installed_at": "2023-11-01T17:46: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": 85760
},
{
"installed_at": "2023-09-15T17:17:59Z",
"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": 460576
},
{
"installed_at": "2024-10-31T06:15:13Z",
"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": 2038
}
],
"cluster_domains": [
"www.americanmeadows.com",
"stg2assets.americanmeadows.com",
"stg2app.americanmeadows.com"
],
"features": [
"Contact Page",
"Tracking or Returns",
"Tracking Page",
"FAQ Page"
],
"rank_percentile": 0.0048,
"rank": 664,
"latitude": 44.3806065,
"platform_rank_percentile": 0.0251,
"longitude": -73.227626,
"estimated_page_views": 14561175,
"estimated_sales": 1227587815,
"estimated_sales_yearly": 14731053780,
"estimated_visits": 3970803,
"employee_count": 63,
"cc_rank": 278754,
"cc_centrality": 106665,
"product_count": 11492,
"platform_rank": 33
}
],
"has_next_page": true,
"next_cursor": "5b22205c75303030314042305c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c2239343931383139225d",
"total": 14051
}
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": 334
},
{
"state": "Active",
"name": "uk.gymshark.com",
"rank": 11383955
},
{
"state": "Active",
"name": "ca.gymshark.com",
"rank": 11384192
},
{
"state": "Active",
"name": "fr.gymshark.com",
"rank": 11384264
},
{
"state": "Active",
"name": "row.gymshark.com",
"rank": 11384349
}
]
}
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": 334
},
{
"state": "Active",
"language_code": "en",
"name": "uk.gymshark.com",
"rank": 11383955
},
{
"state": "Active",
"language_code": "en",
"name": "ca.gymshark.com",
"rank": 11384192
},
{
"state": "Active",
"language_code": "fr",
"name": "fr.gymshark.com",
"rank": 11384264
},
{
"state": "Active",
"language_code": "en",
"name": "row.gymshark.com",
"rank": 11384349
},
{
"state": "Active",
"language_code": "en",
"name": "eu.gymshark.com",
"rank": 11384399
},
{
"state": "Active",
"language_code": "de",
"name": "de.gymshark.com",
"rank": 11384662
},
{
"state": "Active",
"language_code": "en",
"name": "au.gymshark.com",
"rank": 11384681
},
{
"state": "Active",
"language_code": "nl",
"name": "nl.gymshark.com",
"rank": 11385442
},
{
"state": "Active",
"language_code": "en",
"name": "se.gymshark.com",
"rank": 11386117
},
{
"state": "Active",
"language_code": "en",
"name": "no.gymshark.com",
"rank": 11388244
},
{
"state": "Active",
"language_code": "en",
"name": "dk.gymshark.com",
"rank": 11389032
},
{
"state": "Active",
"language_code": "en",
"name": "fi.gymshark.com",
"rank": 11394304
},
{
"state": "Active",
"language_code": "en",
"name": "ie.gymshark.com",
"rank": 11396975
},
{
"state": "Active",
"language_code": "de",
"name": "ch.gymshark.com",
"rank": 11406565
},
{
"state": "Redirects",
"name": "de-en.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "m.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "www.uk.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "gymshark.com",
"rank": 17499999
},
{
"state": "Duplicate",
"language_code": "en",
"name": "dk.shop.gymshark.com",
"rank": 17499999
}
]
}
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",
"20240915055637",
"20240923010151",
"20240929133153",
"20241006112430",
"20241013090342",
"20241020061111",
"20241027062314",
"20241103001204",
"20241110080206",
"20241117154432"
]
}
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": 6000000,
"following": 50,
"posts": 45830,
"type": "twitter",
"value": "https://twitter.com/amazon"
},
"domain_names": [
"www.amazon.com",
"www.amazon.co.jp",
"www.amazon.fr",
"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": 1721725
}
}
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": "EZ Texting",
"description": "EZ Texting is the all-in-one text marketing solution.",
"vendor_url": "https://www.eztexting.com",
"icon_url": "https://storeleads.app/img/tech/eztexting.png",
"installs": 35
},
{
"name": "LegitScript",
"description": "LegitScript provides deep risk analysis to help businesses evaluate, mitigate, and manage risk.",
"vendor_url": "https://www.legitscript.com",
"icon_url": "https://storeleads.app/img/tech/legitscript.png",
"installs": 602
}
]
}
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.