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.
The example requests within our documentation are shown using your personal API key. This is done for your convenience, so that you can cut and paste the examples. Be sure to keep your personal API key private.
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.
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.3",
"app_store_url": "https://apps.shopify.com/marsello",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Grow your business through customer loyalty. Loyalty program, email and SMS campaigns, analytics.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CMevhZDaj4cDEAE=.png",
"name": "Marsello: Loyalty, Email, SMS",
"token": "marsello",
"platform": "shopify",
"vendor_name": "Marsello",
"vendor_url": "https://apps.shopify.com/partners/recovermycart",
"vendor_email": "help@marsello.com",
"vendor_website": "https://www.marsello.com/",
"vendor_address": "4 Bond Street, Level 4, Wellington, WGN, 6011, NZ",
"id": "1.marsello",
"created_at": "2017-05-29T00:00:00",
"plans": [
{
"name": "Loyalty Launch",
"monthly_cost": "$60/month",
"monthly_cost_cents": 6000
},
{
"name": "Loyalty Accelerate",
"monthly_cost": "$120/month",
"monthly_cost_cents": 12000
}
],
"categories": [
"loyalty and rewards",
"email marketing"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n Cin7\n \n \n Clover\n \n \n Heartland Retail\n \n \n Klaviyo\n \n \n Lightspeed\n \n \n Meta"
],
"review_count": 151,
"installs": 2436,
"instp": 0.0008404776231458428,
"installs_30d": -20,
"installs_90d": -56,
"reviews_30d": -4,
"reviews_90d": -4
}
}
List App Reviews
Returns a list of reviews for an App. By default, 50 reviews 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 App Reviews 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": "2026-07-06T00:00:00Z",
"body": "A very robust loyalty platform that keeps improving and offers excellent customer support.",
"merchant_name": "Guitars on Main",
"domains": [
{
"platform_domain": "guitars-on-main.myshopify.com",
"name": "guitarsonmain.com",
"platform_rank": 25296
}
],
"rating": 5
},
{
"updated_at": "2025-11-17T00:00:00Z",
"body": "I have been with them for almost 10 years (since they were known as COLLECT loyalty). Highly professional team - and Roz and Vicky I have worked with are really great!",
"merchant_name": "Via Artists",
"domains": [
{
"platform_domain": "viaalley.myshopify.com",
"name": "viaartists.com",
"platform_rank": 154228
}
],
"rating": 5
}
]
}
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/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
},
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/ako-chatbot",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Turn your visitors into customers through FB Messenger Chatbot",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/62ef19e12b53800ef4410cbdca0de738/icon/CM2lyLL0lu8CEAE=.png?height=84\u0026width=84",
"name": "Messenger Chatbot Marketing",
"token": "ako-chatbot",
"platform": "shopify",
"vendor_name": "Akohub",
"vendor_url": "https://apps.shopify.com/partners/akohub",
"vendor_email": "service@akohub.com",
"vendor_website": "https://www.akohub.com/products/ako-chatbot",
"id": "1.ako-chatbot",
"created_at": "2018-10-30T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "Free"
},
{
"name": "Silver",
"monthly_cost": "$12/month",
"monthly_cost_cents": 1200
}
],
"categories": [
"marketing",
"customer service"
],
"review_count": 4,
"installs": 802,
"instp": 0.00027670897116706324,
"installs_30d": -4,
"installs_90d": 8
}
]
}
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 where 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
- icon_url
- installed_at: the time at which the technology was first detected on the domain
- installs: total installs of the technology across all domains
- description
- vendor_url
- 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/verabradley.com'
Example Response
{
"domain": {
"theme": {
"name": "x",
"style": "Unknown",
"vendor": "Unknown",
"version": "2.0.0"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "verabradley.com",
"city": "Roanoke",
"last_updated_at": "2026-07-18T00:00:00",
"subregion": "Northern America",
"contact_page": "https://verabradley.com/pages/contact-us",
"country_code": "US",
"currency_code": "USD",
"title": "Vera Bradley® - Stylish Bags \u0026 Accessories for Women",
"administrative_area_level_1": "Indiana",
"state": "Active",
"icon": "https://verabradley.com/cdn/shop/files/Favicon.png?crop=center\u0026height=32\u0026v=1738541407\u0026width=32",
"brand_advocate_page": "https://verabradley.com/pages/become-an-affiliate-partner",
"career_page": "https://verabradley.com/pages/careers",
"returns_page": "https://returns.narvar.com/verabradley/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://verabradley.com/pages/about-us",
"platform_domain": "verabradley-live.myshopify.com",
"last_plan_change_at": "2020-08-06T00:00:00",
"platform": "shopify",
"location": "Roanoke, IN 46783, USA",
"max_product_published_at": "2026-07-08T00:00:00",
"postal_code": "46783",
"merchant_name": "Vera Bradley",
"avg_price_formatted": "$49.31",
"created_at": "2019-12-13T00:00:00",
"name": "verabradley.com",
"tld1": "verabradley.com",
"description": "Shop bags, backpacks and travel from Vera Bradley. In exclusive patterns, our colorful products add organization and style wherever you carry them.",
"ticker": "VRA",
"contact_info": [
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/verabradley"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/verabradley"
},
{
"description": "Vera Bradley | We seek to awaken and inspire your pursuit of brilliant self-expression through color, artistry and adventure",
"followers": 146900,
"followers_90d": -151,
"posts": 63818,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/verabradley"
},
{
"description": "A deep exploration into the styles that move you through everyday moments.",
"followers": 10400,
"followers_90d": 91,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@verabradley"
},
{
"description": "Official bag of the fun one.",
"followers": 109500,
"followers_30d": 2536,
"followers_90d": 9262,
"likes": 1100000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@verabradley"
},
{
"description": "Our accessories have accessories, and the airport is our runway. We believe in making beauty a part of every day. Follow along to join our movement!",
"followers": 64200,
"followers_90d": -85,
"posts": 16246,
"source": "/pages/contact-us",
"type": "twitter",
"value": "https://twitter.com/verabradley"
},
{
"source": "/pages/contact-us",
"type": "email",
"value": "VeraBradley@icrinc.com"
},
{
"source": "/pages/contact-us",
"type": "phone",
"value": "(877) 905-8372"
},
{
"source": "/pages/contact-us",
"type": "phone",
"value": "(888) 855-8372"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "email",
"value": "customercare@verabradley.com"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "phone",
"value": "+1 320-205-2197"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "phone",
"value": "+1 754-328-6970"
},
{
"source": "/pages/order-status",
"type": "email",
"value": "verabradley@t.verabradleyemail.com"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/vera-bradley"
}
],
"aliases": [
"myverabradley.com"
],
"apps": [
{
"installed_at": "2024-10-23T23:32:55Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize your thank you and order status pages. Add content blocks and order value limits.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0d93ad03058a8f1d59487bd527ab382/icon/CNmn4qi31YIDEAE=.png",
"name": "Shopify 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\n\n \n \n Customer accounts\n\n \n \n Shopify Admin"
],
"review_count": 189,
"installs": 40012,
"instp": 0.01393367123960294,
"installs_30d": 406,
"installs_90d": 2794,
"reviews_30d": 3,
"reviews_90d": 16
},
{
"installed_at": "2026-01-20T01:58:43Z",
"average_rating": "3.6",
"app_store_url": "https://apps.shopify.com/gleam",
"state": "Active",
"description": "Easily set up and run Giveaways, Contests \u0026 Sweepstakes that drive real user engagement.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8dc670630c433c7c7d2fc8d93581762a/icon/CMjfl--2hvsCEAE=.png",
"name": "Gleam Competitions",
"token": "gleam",
"platform": "shopify",
"vendor_name": "Gleam",
"vendor_url": "https://apps.shopify.com/partners/gleam",
"vendor_email": "support@gleam.io",
"vendor_website": "https://gleam.io",
"vendor_address": "16 Jacaranda Crescent, Mornington, Melbourne, VIC, 3931, AU",
"id": "1.gleam",
"created_at": "2013-12-04T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Pro",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "Business",
"monthly_cost": "$179/month",
"monthly_cost_cents": 17900
},
{
"name": "Premium",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"giveaways and contests",
"pop-ups"
],
"integrates_with": [
"ConvertKit\n \n \n Facebook\n \n \n Instagram\n \n \n Mailchimp\n \n \n YouTube\n \n \n Zapier"
],
"review_count": 30,
"installs": 504,
"instp": 0.0001755116041377557,
"installs_30d": -5,
"installs_90d": -30
},
{
"installed_at": "2026-07-07T00:49:11Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/intelligems",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "A/B test prices, discounts, content, shipping, checkout, post-purchase, and more with AI.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/63fb68ea6dcc0f2694c656e6dd5a895f/icon/CMeOqL2y3Y8DEAE=.png",
"name": "Intelligems: A/B Testing",
"token": "intelligems",
"platform": "shopify",
"vendor_name": "Intelligems",
"vendor_url": "https://apps.shopify.com/partners/intelligems",
"vendor_email": "support@intelligems.io",
"vendor_website": "https://intelligems.io",
"vendor_address": "1 Dock 72 Way, 7th Floor c/o wework, New York, NY, 11205, US",
"id": "1.intelligems",
"created_at": "2021-12-01T00:00:00",
"plans": [
{
"name": "Smart Content",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
},
{
"name": "Smart Merchandise",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Smart Shipping",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Unlimited",
"monthly_cost": "$349/month",
"monthly_cost_cents": 34900
}
],
"categories": [
"pricing optimization",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Claude\n \n \n Google Analytics\n \n \n Heatmap.com\n \n \n Klaviyo\n \n \n Microsoft Clarity\n \n \n ReCharge"
],
"review_count": 158,
"installs": 6574,
"instp": 0.0022893120746063614,
"installs_30d": 165,
"installs_90d": 522,
"reviews_30d": 5,
"reviews_90d": 21
},
{
"installed_at": "2026-06-18T17:11:29Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/judgeme",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Sell more with unlimited product reviews, UGC, star ratings, and testimonials",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/icon/CIfp9fWd34sDEAE=.png",
"name": "Judge.me Product Reviews App",
"token": "judgeme",
"platform": "shopify",
"vendor_name": "Judge.me",
"vendor_url": "https://apps.shopify.com/partners/judge-me",
"vendor_email": "support@judge.me",
"vendor_website": "https://judge.me/",
"vendor_address": "C/O Buckworths 2nd Floor, 1-3 Worship Street, London, ENG, EC2A 2AB, GB",
"id": "1.judgeme",
"created_at": "2015-06-25T00:00:00",
"plans": [
{
"name": "Forever Free",
"monthly_cost": "Free"
},
{
"name": "Awesome",
"monthly_cost": "$15/month",
"monthly_cost_cents": 1500
}
],
"categories": [
"product reviews",
"seo"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n AfterShip: Order Tracking\n \n \n Gorgias: Chat/Support\n \n \n Klaviyo: Email Marketing\n \n \n LoyaltyLion: Loyalty \u0026 Rewards\n \n \n PageFly Landing Page Builder\n \n \n PushOwl: Push Notifications"
],
"review_count": 41210,
"installs": 588264,
"instp": 0.20485547281050143,
"installs_30d": 8353,
"installs_90d": 37476,
"reviews_30d": 1034,
"reviews_90d": 3832
},
{
"installed_at": "2025-06-24T20:24:56Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/klevu-smart-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "AI Search \u0026 product discovery platform that significantly improves conversion rate and AOV.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/21a9df5710f533bed5c0bd66f913f8f4/icon/CIuDr7Hur_ACEAE=.jpeg",
"name": "Klevu ‑ AI Search \u0026 Discovery",
"token": "klevu-smart-search",
"platform": "shopify",
"vendor_name": "Klevu",
"vendor_url": "https://apps.shopify.com/partners/klevu",
"vendor_email": "support@klevu.com",
"vendor_website": "https://www.klevu.com/",
"vendor_address": "Aleksanterinkatu 16-18, Helsinki, 00170, FI",
"id": "1.klevu-smart-search",
"created_at": "2016-08-11T00:00:00",
"plans": [
{
"name": "Recommendations",
"monthly_cost": "$449/month",
"monthly_cost_cents": 44900
},
{
"name": "Category Merch",
"monthly_cost": "$549/month",
"monthly_cost_cents": 54900
},
{
"name": "Site Search",
"monthly_cost": "$649/month",
"monthly_cost_cents": 64900
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify Flow\n \n \n contentful\n \n \n Klaviyo\n \n \n Markets\n \n \n Trustpilot\n \n \n Vue\n \n \n Yotpo"
],
"review_count": 13,
"installs": 601,
"instp": 0.00020929062318807777,
"installs_30d": 18,
"installs_90d": 14
},
{
"installed_at": "2026-01-12T02:19:39Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/microsoft-clarity",
"state": "Active",
"description": "Optimize Your Store Conversions with AI Brand Agents, Analytics, Session Replays \u0026 Heatmaps",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f0038feda3e0f0db8cdb4ce3f29bf187/icon/COGUtNbTvo4DEAE=.png",
"name": "Microsoft Clarity: AI Insights",
"token": "microsoft-clarity",
"platform": "shopify",
"vendor_name": "Microsoft Clarity",
"vendor_url": "https://apps.shopify.com/partners/microsoft-clarity",
"vendor_website": "https://clarity.microsoft.com",
"vendor_address": "1 Microsoft Way, Redmond, WA, 98052, US",
"id": "1.microsoft-clarity",
"created_at": "2025-07-17T00:00:00",
"plans": [
{
"name": "Free Forever",
"monthly_cost": "Free"
}
],
"categories": [
"analytics",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n Google Ads\n \n \n Google Analytics\n \n \n HubSpot\n \n \n Microsoft Ads\n \n \n Optimizely\n \n \n Zapier"
],
"review_count": 1660,
"installs": 86546,
"instp": 0.03013854621370279,
"installs_30d": 8188,
"installs_90d": 25530,
"reviews_30d": 201,
"reviews_90d": 590
},
{
"installed_at": "2022-04-27T10:46:28Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/narvar-returns",
"state": "Active",
"description": "Protect your revenue by transforming refunds into exchanges with our return platform.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/df78c172920390b82b538ceb1244425f/icon/CJ3sx9S5q-8CEAE=.png",
"name": "Narvar Return and Exchange",
"token": "narvar-returns",
"platform": "shopify",
"vendor_name": "Narvar",
"vendor_url": "https://apps.shopify.com/partners/n13",
"vendor_email": "returns.exchanges-support@narvar.com",
"vendor_website": "https://corp.narvar.com/privacy-policy",
"vendor_address": "3 E 3rd Ave, Suite 211, San Mateo, CA, 94401, US",
"id": "1.narvar-returns",
"created_at": "2021-08-31T00:00:00",
"categories": [
"returns and exchanges"
],
"integrates_with": [
"Shopify POS\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Netsuite\n \n \n Recharge\n \n \n ShipHero\n \n \n Tapcart"
],
"review_count": 21,
"installs": 512,
"instp": 0.0001782975026161328,
"installs_30d": 5,
"installs_90d": 22
},
{
"installed_at": "2020-08-06T02:57:45Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/product-options",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Unlimited Product Customization with Infinite Options, Variant Options, Swatches \u0026 Conditional Logic",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9a0bf1159f79c6ab0660ec422f350445/icon/CP2Uwo_GuYIDEAE=.png",
"name": "SC Product Options",
"token": "product-options",
"platform": "shopify",
"vendor_name": "Shop Circle",
"vendor_url": "https://apps.shopify.com/partners/shop-circle-apps",
"vendor_email": "help@shopcircle.co",
"vendor_website": "https://www.shopcircle.co",
"vendor_address": "One Kingdom Street, Paddington Central, London, ENG, W2 6BD, GB",
"id": "1.product-options",
"created_at": "2012-12-14T00:00:00",
"plans": [
{
"name": "Developer",
"monthly_cost": "Free to install"
},
{
"name": "Basic",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Premium",
"monthly_cost": "$39.99/month",
"monthly_cost_cents": 3999
}
],
"categories": [
"product variants",
"custom file upload"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n EComposer\n \n \n Order Printer\n \n \n Pagefly\n \n \n Reorder Master\n \n \n Spently"
],
"review_count": 1195,
"installs": 20437,
"instp": 0.007116925900324035,
"installs_30d": 51,
"installs_90d": -2036,
"reviews_30d": -5,
"reviews_90d": -9
},
{
"installed_at": "2020-08-06T02:57:45Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/signifyd",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Conversions and Reduce Returns with Guaranteed Protection",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/adb1d4e7a8537b18730ab69339a13ad4/icon/CLX1-6b0lu8CEAE=.png",
"name": "Signifyd",
"token": "signifyd",
"platform": "shopify",
"vendor_name": "Signifyd",
"vendor_url": "https://apps.shopify.com/partners/signifyd",
"vendor_email": "support@signifyd.com",
"vendor_website": "https://developer.signifyd.com/",
"vendor_address": "99 South Almaden Ave, Suite 400, San Jose, CA, 95113, US",
"id": "1.signifyd",
"created_at": "2013-06-21T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"fraud",
"returns and warranty - other"
],
"integrates_with": [
"Carthook\n \n \n PayPal\n \n \n Recharge\n \n \n Shop Pay\n \n \n Stripe Early Fraud Warnings"
],
"review_count": 85,
"installs": 3918,
"instp": 0.0013643937797851724,
"installs_30d": 126,
"installs_90d": 364,
"reviews_90d": 2
},
{
"installed_at": "2020-10-21T18:12:23Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/smart-wishlist",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "Increase customer retention, drive sales. No coding required.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/41452eb23dbf365861e8b13b6a242e00/icon/CLnGj770lu8CEAE=.png",
"name": "Smart Wishlist",
"token": "smart-wishlist",
"platform": "shopify",
"vendor_name": "Webmarked",
"vendor_url": "https://apps.shopify.com/partners/biharprabha-com",
"vendor_email": "support@webmarked.net",
"vendor_website": "https://www.webmarked.net",
"vendor_address": "Patna, BR, IN",
"id": "1.smart-wishlist",
"created_at": "2016-05-04T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$4.99/month",
"monthly_cost_cents": 499
}
],
"categories": [
"wishlists"
],
"integrates_with": [
"Google Analytics\n \n \n Klaviyo\n \n \n Sharethis"
],
"review_count": 63,
"installs": 2216,
"instp": 0.0007716938785104498,
"installs_30d": -1,
"installs_90d": -26,
"reviews_90d": -1
},
{
"installed_at": "2026-07-17T01:01:10Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/triplewhale-1",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "The AI operating system for ecommerce.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
"name": "Triple Whale",
"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": "Free",
"monthly_cost": "Free"
},
{
"name": "Foundation",
"monthly_cost": "$219/month",
"monthly_cost_cents": 21900
},
{
"name": "Automate",
"monthly_cost": "$749/month",
"monthly_cost_cents": 74900
}
],
"categories": [
"analytics"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Facebook\n \n \n Google Ads\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Recharge\n \n \n TikTok"
],
"review_count": 94,
"installs": 37666,
"instp": 0.013116706510818863,
"installs_30d": 88,
"installs_90d": 1102,
"reviews_30d": 4,
"reviews_90d": 8
},
{
"installed_at": "2026-01-12T02:19:39Z",
"average_rating": "0",
"app_store_url": "https://apps.shopify.com/wunderkind",
"state": "Active",
"description": "Unlock a top new revenue channel with Wunderkind",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b6002ac9675eb4c5e6c98baec7e6adbc/icon/CP7J_4S49IMDEAE=.png",
"name": "Wunderkind",
"token": "wunderkind",
"platform": "shopify",
"vendor_name": "Wunderkind",
"vendor_url": "https://apps.shopify.com/partners/wunderkind28",
"vendor_website": "https://developer.wunderkind.co/",
"vendor_address": "1 World Trade Center, FL 74, New York, NY, 10007, US",
"id": "1.wunderkind",
"created_at": "2024-01-09T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Checkout"
],
"installs": 136,
"instp": 0.000047360274132410274,
"installs_30d": 3,
"installs_90d": 4
}
],
"categories": [
"/Apparel/Clothing Accessories"
],
"technologies": [
{
"installed_at": "2021-03-11T04:17:14Z",
"name": "Afterpay",
"description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
"vendor_url": "https://www.afterpay.com/",
"icon_url": "https://storeleads.app/img/tech/afterpay.png",
"categories": [
"Payment Processor",
"Financing"
],
"installs": 538275
},
{
"installed_at": "2026-05-26T18:01:00Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1881575
},
{
"installed_at": "2024-02-16T02:04:28Z",
"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",
"categories": [
"Fulfillment"
],
"installs": 2682375
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Advertising"
],
"installs": 208780
},
{
"installed_at": "2023-08-18T18:02:00Z",
"name": "Bold Commerce Platform",
"description": "Bold Commerce sells ecommerce applications including checkout and subscription solutions.",
"vendor_url": "https://boldcommerce.com",
"icon_url": "https://storeleads.app/img/tech/boldcommerce.png",
"installs": 1970
},
{
"installed_at": "2023-10-31T23:28:22Z",
"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",
"categories": [
"CDN"
],
"installs": 5214254
},
{
"installed_at": "2021-06-08T15:50:30Z",
"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",
"categories": [
"CDN"
],
"installs": 4379769
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Analytics"
],
"installs": 4594637
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Advertising"
],
"installs": 4557963
},
{
"installed_at": "2026-05-26T18:01:00Z",
"name": "Google Pay",
"description": "Google Pay is the fast, simple way to pay online, in stores and more.",
"vendor_url": "https://pay.google.com",
"icon_url": "https://storeleads.app/img/tech/googlepay.png",
"categories": [
"Payment Processor"
],
"installs": 1695319
},
{
"installed_at": "2020-08-06T02:57:45Z",
"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",
"categories": [
"Tag Manager"
],
"installs": 4321346
},
{
"installed_at": "2025-06-24T20:24:56Z",
"name": "Klevu",
"description": "AI-powered smart search that generates sales.",
"vendor_url": "https://www.klevu.com",
"icon_url": "https://storeleads.app/img/tech/klevu.png",
"installs": 2390
},
{
"installed_at": "2022-03-09T09:19:19Z",
"name": "LinkShare",
"description": "Discover new customers and increase conversions with the Rakuten LinkShare affiliate network.",
"vendor_url": "https://rakutenadvertising.com/content/linkshare",
"icon_url": "https://storeleads.app/img/tech/rakuten.png",
"categories": [
"Affiliate Marketing"
],
"installs": 5444
},
{
"installed_at": "2025-10-03T01:18:54Z",
"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": 486587
},
{
"installed_at": "2026-05-05T17:06:58Z",
"name": "Mimecast Email Security",
"description": "Effortlessly manage complexity while securing M365, Google Workspace, and on-premise email, blocking advanced threats.",
"vendor_url": "https://www.mimecast.com/products/email-security/",
"icon_url": "https://storeleads.app/technologies/img/MimecastEmailSecurity.png",
"categories": [
"Email"
],
"installs": 36531
},
{
"installed_at": "2022-10-19T13:33:03Z",
"name": "Monetate",
"description": "Monetate offers complete optimization intelligence from hyper-personalization to A/B testing, and everything in between.",
"vendor_url": "https://monetate.com",
"icon_url": "https://storeleads.app/img/tech/marketo.png",
"installs": 2618
},
{
"installed_at": "2020-08-06T02:57:45Z",
"name": "Narvar",
"description": "Narvar helps retailers champion their customers at every step of the journey.",
"vendor_url": "https://corp.narvar.com",
"icon_url": "https://storeleads.app/img/tech/narvar.png",
"categories": [
"Return Management"
],
"installs": 1007
},
{
"installed_at": "2026-03-25T17:40:14Z",
"name": "Ometria",
"description": "Ometria is the customer marketing platform for retail.",
"vendor_url": "https://www.ometria.com",
"icon_url": "https://storeleads.app/img/tech/ometria.png",
"categories": [
"Marketing Automation"
],
"installs": 600
},
{
"installed_at": "2024-07-11T23:52:49Z",
"name": "Osano",
"description": "The Osano data privacy management platform supports, streamlines, and automates compliance in your organization—without the stress.",
"vendor_url": "https://www.osano.com/",
"icon_url": "https://storeleads.app/technologies/img/Osano.png",
"categories": [
"Compliance"
],
"installs": 46766
},
{
"installed_at": "2024-04-23T05:26:20Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1553706
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Analytics"
],
"installs": 473271
},
{
"installed_at": "2022-03-01T00:47:23Z",
"name": "PowerReviews",
"description": "PowerReviews helps build the brands shoppers trust.",
"vendor_url": "https://www.poptin.com",
"icon_url": "https://storeleads.app/img/tech/powerreviews.png",
"installs": 2708
},
{
"installed_at": "2025-08-25T17:56:09Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1561248
},
{
"installed_at": "2021-09-03T06:53:08Z",
"name": "ShopRunner",
"description": "ShopRunner provides free 2-Day shipping and free returns at 100+ stores.",
"vendor_url": "https://www.shoprunner.com",
"icon_url": "https://storeleads.app/img/tech/shoprunner.png",
"installs": 529
},
{
"installed_at": "2020-12-05T03:23:10Z",
"name": "Signifyd",
"description": "Best in class chargeback guarantee protection",
"vendor_url": "https://www.signifyd.com",
"icon_url": "https://storeleads.app/img/tech/signifyd.png",
"installs": 13468
},
{
"installed_at": "2022-07-19T03:23:51Z",
"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",
"categories": [
"Analytics"
],
"installs": 655759
},
{
"installed_at": "2026-07-17T01:01:10Z",
"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": 39272
},
{
"installed_at": "2023-02-28T22:07:27Z",
"name": "Wunderkind",
"description": "Wunderkind is a performance marketing solution that delivers one-to-one marketing experiences to individuals at scale. Formerly known as BounceX.",
"vendor_url": "https://www.wunderkind.co",
"icon_url": "https://storeleads.app/img/tech/bouncex.png",
"installs": 3217
}
],
"cluster_domains": [
"verabradley.com",
"international.verabradley.com"
],
"features": [
"Returns Page",
"Career Page",
"Shopify Online Store 2.0",
"Cryptocurrency Messaging",
"Gift Messaging",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Brand Advocate Page",
"Has Blog",
"Public Company"
],
"shipping_carriers": [
"Fedex",
"USPS"
],
"redirects_to": [
"www.verabradley.com",
"verabradley.ca",
"international.verabradley.com"
],
"ships_to_countries": [
"United States"
],
"rank_percentile": 0.0014,
"collection_count": 932,
"rank": 198,
"latitude": 40.9625467,
"platform_rank_percentile": 0.0002,
"longitude": -85.37330779999999,
"estimated_page_views": 22740214,
"estimated_sales": 2646473067,
"estimated_sales_yearly": 31757676804,
"estimated_visits": 6146003,
"product_images": 6062,
"product_images_created_365": 3761,
"product_images_created_90": 779,
"product_images_created_30": 228,
"employee_count": 1390,
"cc_rank": 119025,
"cc_centrality": 147974,
"product_count": 2245,
"max_price": 84500,
"max_price_usd": 84500,
"max_weight": 17663,
"monthly_app_spend": 45399,
"min_price": 100,
"min_price_usd": 100,
"min_weight": 9,
"variant_count": 1766,
"vendor_count": 8,
"avg_price": 4931,
"avg_price_usd": 4931,
"avg_weight": 1357,
"platform_rank": 7
}
}
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": ["verabradley.com"]}' 'https://storeleads.app/json/api/v1/all/domain/bulk'
Example Response
{
"domains": [
{
"theme": {
"name": "x",
"style": "Unknown",
"vendor": "Unknown",
"version": "2.0.0"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "verabradley.com",
"city": "Roanoke",
"last_updated_at": "2026-07-18T00:00:00",
"subregion": "Northern America",
"contact_page": "https://verabradley.com/pages/contact-us",
"country_code": "US",
"currency_code": "USD",
"title": "Vera Bradley® - Stylish Bags \u0026 Accessories for Women",
"administrative_area_level_1": "Indiana",
"state": "Active",
"icon": "https://verabradley.com/cdn/shop/files/Favicon.png?crop=center\u0026height=32\u0026v=1738541407\u0026width=32",
"brand_advocate_page": "https://verabradley.com/pages/become-an-affiliate-partner",
"career_page": "https://verabradley.com/pages/careers",
"returns_page": "https://returns.narvar.com/verabradley/returns",
"region": "Americas",
"language_code": "en",
"about_us": "https://verabradley.com/pages/about-us",
"platform_domain": "verabradley-live.myshopify.com",
"last_plan_change_at": "2020-08-06T00:00:00",
"platform": "shopify",
"location": "Roanoke, IN 46783, USA",
"max_product_published_at": "2026-07-08T00:00:00",
"postal_code": "46783",
"merchant_name": "Vera Bradley",
"avg_price_formatted": "$49.31",
"created_at": "2019-12-13T00:00:00",
"name": "verabradley.com",
"tld1": "verabradley.com",
"description": "Shop bags, backpacks and travel from Vera Bradley. In exclusive patterns, our colorful products add organization and style wherever you carry them.",
"ticker": "VRA",
"contact_info": [
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/verabradley"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/verabradley"
},
{
"description": "Vera Bradley | We seek to awaken and inspire your pursuit of brilliant self-expression through color, artistry and adventure",
"followers": 146900,
"followers_90d": -151,
"posts": 63818,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/verabradley"
},
{
"description": "A deep exploration into the styles that move you through everyday moments.",
"followers": 10400,
"followers_90d": 91,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@verabradley"
},
{
"description": "Official bag of the fun one.",
"followers": 109500,
"followers_30d": 2536,
"followers_90d": 9262,
"likes": 1100000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@verabradley"
},
{
"description": "Our accessories have accessories, and the airport is our runway. We believe in making beauty a part of every day. Follow along to join our movement!",
"followers": 64200,
"followers_90d": -85,
"posts": 16246,
"source": "/pages/contact-us",
"type": "twitter",
"value": "https://twitter.com/verabradley"
},
{
"source": "/pages/contact-us",
"type": "email",
"value": "VeraBradley@icrinc.com"
},
{
"source": "/pages/contact-us",
"type": "phone",
"value": "(877) 905-8372"
},
{
"source": "/pages/contact-us",
"type": "phone",
"value": "(888) 855-8372"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "email",
"value": "customercare@verabradley.com"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "phone",
"value": "+1 320-205-2197"
},
{
"source": "/pages/sms-mms-terms-of-service",
"type": "phone",
"value": "+1 754-328-6970"
},
{
"source": "/pages/order-status",
"type": "email",
"value": "verabradley@t.verabradleyemail.com"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/vera-bradley"
}
],
"aliases": [
"myverabradley.com"
],
"apps": [
{
"installed_at": "2024-10-23T23:32:55Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize your thank you and order status pages. Add content blocks and order value limits.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0d93ad03058a8f1d59487bd527ab382/icon/CNmn4qi31YIDEAE=.png",
"name": "Shopify 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\n\n \n \n Customer accounts\n\n \n \n Shopify Admin"
],
"review_count": 189,
"installs": 40012,
"instp": 0.01393367123960294,
"installs_30d": 406,
"installs_90d": 2794,
"reviews_30d": 3,
"reviews_90d": 16
},
{
"installed_at": "2026-01-20T01:58:43Z",
"average_rating": "3.6",
"app_store_url": "https://apps.shopify.com/gleam",
"state": "Active",
"description": "Easily set up and run Giveaways, Contests \u0026 Sweepstakes that drive real user engagement.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8dc670630c433c7c7d2fc8d93581762a/icon/CMjfl--2hvsCEAE=.png",
"name": "Gleam Competitions",
"token": "gleam",
"platform": "shopify",
"vendor_name": "Gleam",
"vendor_url": "https://apps.shopify.com/partners/gleam",
"vendor_email": "support@gleam.io",
"vendor_website": "https://gleam.io",
"vendor_address": "16 Jacaranda Crescent, Mornington, Melbourne, VIC, 3931, AU",
"id": "1.gleam",
"created_at": "2013-12-04T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Pro",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "Business",
"monthly_cost": "$179/month",
"monthly_cost_cents": 17900
},
{
"name": "Premium",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"giveaways and contests",
"pop-ups"
],
"integrates_with": [
"ConvertKit\n \n \n Facebook\n \n \n Instagram\n \n \n Mailchimp\n \n \n YouTube\n \n \n Zapier"
],
"review_count": 30,
"installs": 504,
"instp": 0.0001755116041377557,
"installs_30d": -5,
"installs_90d": -30
},
{
"installed_at": "2026-07-07T00:49:11Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/intelligems",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "A/B test prices, discounts, content, shipping, checkout, post-purchase, and more with AI.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/63fb68ea6dcc0f2694c656e6dd5a895f/icon/CMeOqL2y3Y8DEAE=.png",
"name": "Intelligems: A/B Testing",
"token": "intelligems",
"platform": "shopify",
"vendor_name": "Intelligems",
"vendor_url": "https://apps.shopify.com/partners/intelligems",
"vendor_email": "support@intelligems.io",
"vendor_website": "https://intelligems.io",
"vendor_address": "1 Dock 72 Way, 7th Floor c/o wework, New York, NY, 11205, US",
"id": "1.intelligems",
"created_at": "2021-12-01T00:00:00",
"plans": [
{
"name": "Smart Content",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
},
{
"name": "Smart Merchandise",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Smart Shipping",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Unlimited",
"monthly_cost": "$349/month",
"monthly_cost_cents": 34900
}
],
"categories": [
"pricing optimization",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Claude\n \n \n Google Analytics\n \n \n Heatmap.com\n \n \n Klaviyo\n \n \n Microsoft Clarity\n \n \n ReCharge"
],
"review_count": 158,
"installs": 6574,
"instp": 0.0022893120746063614,
"installs_30d": 165,
"installs_90d": 522,
"reviews_30d": 5,
"reviews_90d": 21
},
{
"installed_at": "2026-06-18T17:11:29Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/judgeme",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "Sell more with unlimited product reviews, UGC, star ratings, and testimonials",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/icon/CIfp9fWd34sDEAE=.png",
"name": "Judge.me Product Reviews App",
"token": "judgeme",
"platform": "shopify",
"vendor_name": "Judge.me",
"vendor_url": "https://apps.shopify.com/partners/judge-me",
"vendor_email": "support@judge.me",
"vendor_website": "https://judge.me/",
"vendor_address": "C/O Buckworths 2nd Floor, 1-3 Worship Street, London, ENG, EC2A 2AB, GB",
"id": "1.judgeme",
"created_at": "2015-06-25T00:00:00",
"plans": [
{
"name": "Forever Free",
"monthly_cost": "Free"
},
{
"name": "Awesome",
"monthly_cost": "$15/month",
"monthly_cost_cents": 1500
}
],
"categories": [
"product reviews",
"seo"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n AfterShip: Order Tracking\n \n \n Gorgias: Chat/Support\n \n \n Klaviyo: Email Marketing\n \n \n LoyaltyLion: Loyalty \u0026 Rewards\n \n \n PageFly Landing Page Builder\n \n \n PushOwl: Push Notifications"
],
"review_count": 41210,
"installs": 588264,
"instp": 0.20485547281050143,
"installs_30d": 8353,
"installs_90d": 37476,
"reviews_30d": 1034,
"reviews_90d": 3832
},
{
"installed_at": "2025-06-24T20:24:56Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/klevu-smart-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "AI Search \u0026 product discovery platform that significantly improves conversion rate and AOV.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/21a9df5710f533bed5c0bd66f913f8f4/icon/CIuDr7Hur_ACEAE=.jpeg",
"name": "Klevu ‑ AI Search \u0026 Discovery",
"token": "klevu-smart-search",
"platform": "shopify",
"vendor_name": "Klevu",
"vendor_url": "https://apps.shopify.com/partners/klevu",
"vendor_email": "support@klevu.com",
"vendor_website": "https://www.klevu.com/",
"vendor_address": "Aleksanterinkatu 16-18, Helsinki, 00170, FI",
"id": "1.klevu-smart-search",
"created_at": "2016-08-11T00:00:00",
"plans": [
{
"name": "Recommendations",
"monthly_cost": "$449/month",
"monthly_cost_cents": 44900
},
{
"name": "Category Merch",
"monthly_cost": "$549/month",
"monthly_cost_cents": 54900
},
{
"name": "Site Search",
"monthly_cost": "$649/month",
"monthly_cost_cents": 64900
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify Flow\n \n \n contentful\n \n \n Klaviyo\n \n \n Markets\n \n \n Trustpilot\n \n \n Vue\n \n \n Yotpo"
],
"review_count": 13,
"installs": 601,
"instp": 0.00020929062318807777,
"installs_30d": 18,
"installs_90d": 14
},
{
"installed_at": "2026-01-12T02:19:39Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/microsoft-clarity",
"state": "Active",
"description": "Optimize Your Store Conversions with AI Brand Agents, Analytics, Session Replays \u0026 Heatmaps",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f0038feda3e0f0db8cdb4ce3f29bf187/icon/COGUtNbTvo4DEAE=.png",
"name": "Microsoft Clarity: AI Insights",
"token": "microsoft-clarity",
"platform": "shopify",
"vendor_name": "Microsoft Clarity",
"vendor_url": "https://apps.shopify.com/partners/microsoft-clarity",
"vendor_website": "https://clarity.microsoft.com",
"vendor_address": "1 Microsoft Way, Redmond, WA, 98052, US",
"id": "1.microsoft-clarity",
"created_at": "2025-07-17T00:00:00",
"plans": [
{
"name": "Free Forever",
"monthly_cost": "Free"
}
],
"categories": [
"analytics",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n Google Ads\n \n \n Google Analytics\n \n \n HubSpot\n \n \n Microsoft Ads\n \n \n Optimizely\n \n \n Zapier"
],
"review_count": 1660,
"installs": 86546,
"instp": 0.03013854621370279,
"installs_30d": 8188,
"installs_90d": 25530,
"reviews_30d": 201,
"reviews_90d": 590
},
{
"installed_at": "2022-04-27T10:46:28Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/narvar-returns",
"state": "Active",
"description": "Protect your revenue by transforming refunds into exchanges with our return platform.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/df78c172920390b82b538ceb1244425f/icon/CJ3sx9S5q-8CEAE=.png",
"name": "Narvar Return and Exchange",
"token": "narvar-returns",
"platform": "shopify",
"vendor_name": "Narvar",
"vendor_url": "https://apps.shopify.com/partners/n13",
"vendor_email": "returns.exchanges-support@narvar.com",
"vendor_website": "https://corp.narvar.com/privacy-policy",
"vendor_address": "3 E 3rd Ave, Suite 211, San Mateo, CA, 94401, US",
"id": "1.narvar-returns",
"created_at": "2021-08-31T00:00:00",
"categories": [
"returns and exchanges"
],
"integrates_with": [
"Shopify POS\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Netsuite\n \n \n Recharge\n \n \n ShipHero\n \n \n Tapcart"
],
"review_count": 21,
"installs": 512,
"instp": 0.0001782975026161328,
"installs_30d": 5,
"installs_90d": 22
},
{
"installed_at": "2020-08-06T02:57:45Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/product-options",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Unlimited Product Customization with Infinite Options, Variant Options, Swatches \u0026 Conditional Logic",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9a0bf1159f79c6ab0660ec422f350445/icon/CP2Uwo_GuYIDEAE=.png",
"name": "SC Product Options",
"token": "product-options",
"platform": "shopify",
"vendor_name": "Shop Circle",
"vendor_url": "https://apps.shopify.com/partners/shop-circle-apps",
"vendor_email": "help@shopcircle.co",
"vendor_website": "https://www.shopcircle.co",
"vendor_address": "One Kingdom Street, Paddington Central, London, ENG, W2 6BD, GB",
"id": "1.product-options",
"created_at": "2012-12-14T00:00:00",
"plans": [
{
"name": "Developer",
"monthly_cost": "Free to install"
},
{
"name": "Basic",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Premium",
"monthly_cost": "$39.99/month",
"monthly_cost_cents": 3999
}
],
"categories": [
"product variants",
"custom file upload"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n EComposer\n \n \n Order Printer\n \n \n Pagefly\n \n \n Reorder Master\n \n \n Spently"
],
"review_count": 1195,
"installs": 20437,
"instp": 0.007116925900324035,
"installs_30d": 51,
"installs_90d": -2036,
"reviews_30d": -5,
"reviews_90d": -9
},
{
"installed_at": "2020-08-06T02:57:45Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/signifyd",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Conversions and Reduce Returns with Guaranteed Protection",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/adb1d4e7a8537b18730ab69339a13ad4/icon/CLX1-6b0lu8CEAE=.png",
"name": "Signifyd",
"token": "signifyd",
"platform": "shopify",
"vendor_name": "Signifyd",
"vendor_url": "https://apps.shopify.com/partners/signifyd",
"vendor_email": "support@signifyd.com",
"vendor_website": "https://developer.signifyd.com/",
"vendor_address": "99 South Almaden Ave, Suite 400, San Jose, CA, 95113, US",
"id": "1.signifyd",
"created_at": "2013-06-21T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"fraud",
"returns and warranty - other"
],
"integrates_with": [
"Carthook\n \n \n PayPal\n \n \n Recharge\n \n \n Shop Pay\n \n \n Stripe Early Fraud Warnings"
],
"review_count": 85,
"installs": 3918,
"instp": 0.0013643937797851724,
"installs_30d": 126,
"installs_90d": 364,
"reviews_90d": 2
},
{
"installed_at": "2020-10-21T18:12:23Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/smart-wishlist",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "Increase customer retention, drive sales. No coding required.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/41452eb23dbf365861e8b13b6a242e00/icon/CLnGj770lu8CEAE=.png",
"name": "Smart Wishlist",
"token": "smart-wishlist",
"platform": "shopify",
"vendor_name": "Webmarked",
"vendor_url": "https://apps.shopify.com/partners/biharprabha-com",
"vendor_email": "support@webmarked.net",
"vendor_website": "https://www.webmarked.net",
"vendor_address": "Patna, BR, IN",
"id": "1.smart-wishlist",
"created_at": "2016-05-04T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$4.99/month",
"monthly_cost_cents": 499
}
],
"categories": [
"wishlists"
],
"integrates_with": [
"Google Analytics\n \n \n Klaviyo\n \n \n Sharethis"
],
"review_count": 63,
"installs": 2216,
"instp": 0.0007716938785104498,
"installs_30d": -1,
"installs_90d": -26,
"reviews_90d": -1
},
{
"installed_at": "2026-07-17T01:01:10Z",
"average_rating": "4",
"app_store_url": "https://apps.shopify.com/triplewhale-1",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "The AI operating system for ecommerce.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
"name": "Triple Whale",
"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": "Free",
"monthly_cost": "Free"
},
{
"name": "Foundation",
"monthly_cost": "$219/month",
"monthly_cost_cents": 21900
},
{
"name": "Automate",
"monthly_cost": "$749/month",
"monthly_cost_cents": 74900
}
],
"categories": [
"analytics"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Facebook\n \n \n Google Ads\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Recharge\n \n \n TikTok"
],
"review_count": 94,
"installs": 37666,
"instp": 0.013116706510818863,
"installs_30d": 88,
"installs_90d": 1102,
"reviews_30d": 4,
"reviews_90d": 8
},
{
"installed_at": "2026-01-12T02:19:39Z",
"average_rating": "0",
"app_store_url": "https://apps.shopify.com/wunderkind",
"state": "Active",
"description": "Unlock a top new revenue channel with Wunderkind",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b6002ac9675eb4c5e6c98baec7e6adbc/icon/CP7J_4S49IMDEAE=.png",
"name": "Wunderkind",
"token": "wunderkind",
"platform": "shopify",
"vendor_name": "Wunderkind",
"vendor_url": "https://apps.shopify.com/partners/wunderkind28",
"vendor_website": "https://developer.wunderkind.co/",
"vendor_address": "1 World Trade Center, FL 74, New York, NY, 10007, US",
"id": "1.wunderkind",
"created_at": "2024-01-09T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Checkout"
],
"installs": 136,
"instp": 0.000047360274132410274,
"installs_30d": 3,
"installs_90d": 4
}
],
"categories": [
"/Apparel/Clothing Accessories"
],
"technologies": [
{
"installed_at": "2021-03-11T04:17:14Z",
"name": "Afterpay",
"description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
"vendor_url": "https://www.afterpay.com/",
"icon_url": "https://storeleads.app/img/tech/afterpay.png",
"categories": [
"Payment Processor",
"Financing"
],
"installs": 538275
},
{
"installed_at": "2026-05-26T18:01:00Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1881575
},
{
"installed_at": "2024-02-16T02:04:28Z",
"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",
"categories": [
"Fulfillment"
],
"installs": 2682375
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Advertising"
],
"installs": 208780
},
{
"installed_at": "2023-08-18T18:02:00Z",
"name": "Bold Commerce Platform",
"description": "Bold Commerce sells ecommerce applications including checkout and subscription solutions.",
"vendor_url": "https://boldcommerce.com",
"icon_url": "https://storeleads.app/img/tech/boldcommerce.png",
"installs": 1970
},
{
"installed_at": "2023-10-31T23:28:22Z",
"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",
"categories": [
"CDN"
],
"installs": 5214254
},
{
"installed_at": "2021-06-08T15:50:30Z",
"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",
"categories": [
"CDN"
],
"installs": 4379769
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Analytics"
],
"installs": 4594637
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Advertising"
],
"installs": 4557963
},
{
"installed_at": "2026-05-26T18:01:00Z",
"name": "Google Pay",
"description": "Google Pay is the fast, simple way to pay online, in stores and more.",
"vendor_url": "https://pay.google.com",
"icon_url": "https://storeleads.app/img/tech/googlepay.png",
"categories": [
"Payment Processor"
],
"installs": 1695319
},
{
"installed_at": "2020-08-06T02:57:45Z",
"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",
"categories": [
"Tag Manager"
],
"installs": 4321346
},
{
"installed_at": "2025-06-24T20:24:56Z",
"name": "Klevu",
"description": "AI-powered smart search that generates sales.",
"vendor_url": "https://www.klevu.com",
"icon_url": "https://storeleads.app/img/tech/klevu.png",
"installs": 2390
},
{
"installed_at": "2022-03-09T09:19:19Z",
"name": "LinkShare",
"description": "Discover new customers and increase conversions with the Rakuten LinkShare affiliate network.",
"vendor_url": "https://rakutenadvertising.com/content/linkshare",
"icon_url": "https://storeleads.app/img/tech/rakuten.png",
"categories": [
"Affiliate Marketing"
],
"installs": 5444
},
{
"installed_at": "2025-10-03T01:18:54Z",
"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": 486587
},
{
"installed_at": "2026-05-05T17:06:58Z",
"name": "Mimecast Email Security",
"description": "Effortlessly manage complexity while securing M365, Google Workspace, and on-premise email, blocking advanced threats.",
"vendor_url": "https://www.mimecast.com/products/email-security/",
"icon_url": "https://storeleads.app/technologies/img/MimecastEmailSecurity.png",
"categories": [
"Email"
],
"installs": 36531
},
{
"installed_at": "2022-10-19T13:33:03Z",
"name": "Monetate",
"description": "Monetate offers complete optimization intelligence from hyper-personalization to A/B testing, and everything in between.",
"vendor_url": "https://monetate.com",
"icon_url": "https://storeleads.app/img/tech/marketo.png",
"installs": 2618
},
{
"installed_at": "2020-08-06T02:57:45Z",
"name": "Narvar",
"description": "Narvar helps retailers champion their customers at every step of the journey.",
"vendor_url": "https://corp.narvar.com",
"icon_url": "https://storeleads.app/img/tech/narvar.png",
"categories": [
"Return Management"
],
"installs": 1007
},
{
"installed_at": "2026-03-25T17:40:14Z",
"name": "Ometria",
"description": "Ometria is the customer marketing platform for retail.",
"vendor_url": "https://www.ometria.com",
"icon_url": "https://storeleads.app/img/tech/ometria.png",
"categories": [
"Marketing Automation"
],
"installs": 600
},
{
"installed_at": "2024-07-11T23:52:49Z",
"name": "Osano",
"description": "The Osano data privacy management platform supports, streamlines, and automates compliance in your organization—without the stress.",
"vendor_url": "https://www.osano.com/",
"icon_url": "https://storeleads.app/technologies/img/Osano.png",
"categories": [
"Compliance"
],
"installs": 46766
},
{
"installed_at": "2024-04-23T05:26:20Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1553706
},
{
"installed_at": "2022-03-09T09:19:19Z",
"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",
"categories": [
"Analytics"
],
"installs": 473271
},
{
"installed_at": "2022-03-01T00:47:23Z",
"name": "PowerReviews",
"description": "PowerReviews helps build the brands shoppers trust.",
"vendor_url": "https://www.poptin.com",
"icon_url": "https://storeleads.app/img/tech/powerreviews.png",
"installs": 2708
},
{
"installed_at": "2025-08-25T17:56:09Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1561248
},
{
"installed_at": "2021-09-03T06:53:08Z",
"name": "ShopRunner",
"description": "ShopRunner provides free 2-Day shipping and free returns at 100+ stores.",
"vendor_url": "https://www.shoprunner.com",
"icon_url": "https://storeleads.app/img/tech/shoprunner.png",
"installs": 529
},
{
"installed_at": "2020-12-05T03:23:10Z",
"name": "Signifyd",
"description": "Best in class chargeback guarantee protection",
"vendor_url": "https://www.signifyd.com",
"icon_url": "https://storeleads.app/img/tech/signifyd.png",
"installs": 13468
},
{
"installed_at": "2022-07-19T03:23:51Z",
"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",
"categories": [
"Analytics"
],
"installs": 655759
},
{
"installed_at": "2026-07-17T01:01:10Z",
"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": 39272
},
{
"installed_at": "2023-02-28T22:07:27Z",
"name": "Wunderkind",
"description": "Wunderkind is a performance marketing solution that delivers one-to-one marketing experiences to individuals at scale. Formerly known as BounceX.",
"vendor_url": "https://www.wunderkind.co",
"icon_url": "https://storeleads.app/img/tech/bouncex.png",
"installs": 3217
}
],
"cluster_domains": [
"verabradley.com",
"international.verabradley.com"
],
"features": [
"Returns Page",
"Career Page",
"Shopify Online Store 2.0",
"Cryptocurrency Messaging",
"Gift Messaging",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Brand Advocate Page",
"Has Blog",
"Public Company"
],
"shipping_carriers": [
"Fedex",
"USPS"
],
"redirects_to": [
"www.verabradley.com",
"verabradley.ca",
"international.verabradley.com"
],
"ships_to_countries": [
"United States"
],
"rank_percentile": 0.0014,
"collection_count": 932,
"rank": 198,
"latitude": 40.9625467,
"platform_rank_percentile": 0.0002,
"longitude": -85.37330779999999,
"estimated_page_views": 22740214,
"estimated_sales": 2646473067,
"estimated_sales_yearly": 31757676804,
"estimated_visits": 6146003,
"product_images": 6062,
"product_images_created_365": 3761,
"product_images_created_90": 779,
"product_images_created_30": 228,
"employee_count": 1390,
"cc_rank": 119025,
"cc_centrality": 147974,
"product_count": 2245,
"max_price": 84500,
"max_price_usd": 84500,
"max_weight": 17663,
"monthly_app_spend": 45399,
"min_price": 100,
"min_price_usd": 100,
"min_weight": 9,
"variant_count": 1766,
"vendor_count": 8,
"avg_price": 4931,
"avg_price_usd": 4931,
"avg_weight": 1357,
"platform_rank": 7
}
]
}
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/verabradley.com/app_reviews'
Example Response
{
"reviews": [
{
"app": {
"app_store_url": "https://apps.shopify.com/marsello",
"name": "Marsello: Loyalty, Email, SMS",
"vendor_name": "Marsello",
"id": "1.marsello"
},
"updated_at": "2026-07-06T00:00:00Z",
"body": "A very robust loyalty platform that keeps improving and offers excellent customer support.",
"merchant_name": "Guitars on Main",
"domains": [
{
"platform_domain": "guitars-on-main.myshopify.com",
"name": "guitarsonmain.com",
"platform_rank": 25296
}
],
"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. Note that the aq cannot be combined with the filter parameters (started with /f:) listed below.
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 greater than or equal to the provided integer value.
Note: this value is normalized to USD and the value is in cents. 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 average product price less than or equal to the provided integer value.
Note: this value is normalized to USD and the value is in cents. So use the value 150 to represent $1.50.
Filters the results to Domains that have average product weight (in grams) greater than or equal to the provided integer value.
Filters the results to Domains that have average product weight (in grams) less than or equal to the provided integer value.
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 use the provided shipping carriers.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:dsc:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:dsc 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 estimated visits greater than or equal to the provided integer value.
Filters the results to Domains that have estimated visits less than or equal to the provided integer value.
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:
- 1shop
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abantecart
- abicart
- advantshop
- aerocommerce
- agileb2b
- alibabaminisite
- aliexpress
- allvalue
- amboras
- americommerce
- aoswag
- arcadina
- artlogic
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- bcart
- beatstars
- bentobox
- bentoweb
- betalabs
- bigcartel
- bigcommerce
- billtrust
- bitrix
- bookmanager
- booqable
- boutir
- bsale
- bvcommerce
- bvshop
- bwcommerce
- cafe24
- cardfoundry
- cartpe
- cartx
- ccvshop
- celerant
- centra
- cin7
- cityhive
- cleverbridge
- cloov
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commercev3
- convertize
- corecommerce
- corksy
- creativesites
- crystalcommerce
- cscart
- ctt
- cubecart
- custom
- cyberbiz
- cybersoft
- dandomain
- dashnex
- dealerspike
- deliverybizpro
- demandware
- digitickets
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- dx1
- e37
- easydigital
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecrater
- ecwid
- ekm
- empretienda
- epages
- eproshopping
- eshop
- estore
- etsypattern
- expandcart
- f1
- fastcommerce
- fathershops
- fbits
- fenicio
- finqu
- foodticket
- fourthwall
- foxycart
- fulfillengine
- funnelish
- funpinpin
- futureshop
- gambio
- genstoreai
- getshoptoday
- getsides
- globallinker
- godaddy
- gomag
- graphy
- grazecart
- groovekart
- gumroad
- haravan
- hcl
- herbalife
- hikashop
- hoplix
- hostedshop
- hostgator
- ideasoft
- idosell
- ikas
- iluria
- imweb
- indonetwork
- inovarti
- insales
- inshop
- instamojo
- instantestore
- intershop
- irp
- irroba
- isiore
- j2store
- jet
- jetshop
- jigoshop
- jouwweb
- jtl
- jumpseller
- juntoz
- kajabi
- kometia
- konimbo
- kudosrecords
- kyte
- ladipage
- launchcart
- lazyshop
- lemonsqueezy
- lightfunnels
- lightspeed
- linx
- litium
- livecommerce
- lizee
- lnwshop
- logivert
- logosportswear
- lojaintegrada
- lojasvirtuaisbr
- madeinchina
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- mesoigner
- microweber
- mijnwebwinkel
- miva
- modified
- moovin
- mshop
- musicglue
- myshop
- mystore
- navego
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nmg
- nop
- norce
- novomind
- nyehandel
- ochanoko
- ochre
- oddle
- odoo
- oemsaas
- oleoshop
- onecom
- opencart
- oracle
- ordable
- ordere
- ordermygear
- orderport
- ordersmart
- oro
- oscommerce
- owner
- oxatis
- oxid
- paykickstart
- photoshelter
- pixels
- plenty
- podia
- popmenu
- prestashop
- printify
- prom
- promidata
- qdm
- quickbutik
- rain
- readypro
- remarkable
- rentmy
- repisuto
- ribbn
- romancart
- saffire
- sage
- salla
- salonized
- samishop
- sana
- sap
- sapo
- satukz
- scannet
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shop5
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopfactory
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoppaas
- shoprenter
- shopsite
- shoptet
- shoptille
- shopware
- shopwired
- shopwp
- shopx
- shopyy
- showmore
- shoxl
- simplybook
- siquando
- sirclo
- sitecore
- sitedish
- sitesmart
- sixshop
- skyshop
- smartetailing
- smarticket
- smartstore
- snipcart
- sodexo
- sote
- spektrix
- spiritsale
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- starweb
- stoom
- storeberry
- storeep
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- takedrop
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanegocio
- tiendanube
- tiu
- tokotalk
- topline
- tornadostore
- tossdown
- townsendmusic
- tradift
- trailerfunnel
- tray
- treet
- tsoft
- twicecommerce
- ubercart
- ueeshop
- unas
- unicart
- unilog
- unipage
- vendaenlinea
- vendre
- vepaar
- viart
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vpcart
- vtex
- w2repeat
- waca
- webflow
- webmercs
- webstore
- weeblycommerce
- weedmaps
- welcart
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wpecommerce
- wshop
- wuilt
- wx3
- xanario
- xcart
- xonic
- xpage
- xshoppy
- xtcommerce
- yahoo
- yampi
- yns
- 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:
- 1shop
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abantecart
- abicart
- advantshop
- aerocommerce
- agileb2b
- alibabaminisite
- aliexpress
- allvalue
- amboras
- americommerce
- aoswag
- arcadina
- artlogic
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- bcart
- beatstars
- bentobox
- bentoweb
- betalabs
- bigcartel
- bigcommerce
- billtrust
- bitrix
- bookmanager
- booqable
- boutir
- bsale
- bvcommerce
- bvshop
- bwcommerce
- cafe24
- cardfoundry
- cartpe
- cartx
- ccvshop
- celerant
- centra
- cin7
- cityhive
- cleverbridge
- cloov
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commercev3
- convertize
- corecommerce
- corksy
- creativesites
- crystalcommerce
- cscart
- ctt
- cubecart
- custom
- cyberbiz
- cybersoft
- dandomain
- dashnex
- dealerspike
- deliverybizpro
- demandware
- digitickets
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- dx1
- e37
- easydigital
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecrater
- ecwid
- ekm
- empretienda
- epages
- eproshopping
- eshop
- estore
- etsypattern
- expandcart
- f1
- fastcommerce
- fathershops
- fbits
- fenicio
- finqu
- foodticket
- fourthwall
- foxycart
- fulfillengine
- funnelish
- funpinpin
- futureshop
- gambio
- genstoreai
- getshoptoday
- getsides
- globallinker
- godaddy
- gomag
- graphy
- grazecart
- groovekart
- gumroad
- haravan
- hcl
- herbalife
- hikashop
- hoplix
- hostedshop
- hostgator
- ideasoft
- idosell
- ikas
- iluria
- imweb
- indonetwork
- inovarti
- insales
- inshop
- instamojo
- instantestore
- intershop
- irp
- irroba
- isiore
- j2store
- jet
- jetshop
- jigoshop
- jouwweb
- jtl
- jumpseller
- juntoz
- kajabi
- kometia
- konimbo
- kudosrecords
- kyte
- ladipage
- launchcart
- lazyshop
- lemonsqueezy
- lightfunnels
- lightspeed
- linx
- litium
- livecommerce
- lizee
- lnwshop
- logivert
- logosportswear
- lojaintegrada
- lojasvirtuaisbr
- madeinchina
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- mesoigner
- microweber
- mijnwebwinkel
- miva
- modified
- moovin
- mshop
- musicglue
- myshop
- mystore
- navego
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nmg
- nop
- norce
- novomind
- nyehandel
- ochanoko
- ochre
- oddle
- odoo
- oemsaas
- oleoshop
- onecom
- opencart
- oracle
- ordable
- ordere
- ordermygear
- orderport
- ordersmart
- oro
- oscommerce
- owner
- oxatis
- oxid
- paykickstart
- photoshelter
- pixels
- plenty
- podia
- popmenu
- prestashop
- printify
- prom
- promidata
- qdm
- quickbutik
- rain
- readypro
- remarkable
- rentmy
- repisuto
- ribbn
- romancart
- saffire
- sage
- salla
- salonized
- samishop
- sana
- sap
- sapo
- satukz
- scannet
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shop5
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopfactory
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoppaas
- shoprenter
- shopsite
- shoptet
- shoptille
- shopware
- shopwired
- shopwp
- shopx
- shopyy
- showmore
- shoxl
- simplybook
- siquando
- sirclo
- sitecore
- sitedish
- sitesmart
- sixshop
- skyshop
- smartetailing
- smarticket
- smartstore
- snipcart
- sodexo
- sote
- spektrix
- spiritsale
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- starweb
- stoom
- storeberry
- storeep
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- takedrop
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanegocio
- tiendanube
- tiu
- tokotalk
- topline
- tornadostore
- tossdown
- townsendmusic
- tradift
- trailerfunnel
- tray
- treet
- tsoft
- twicecommerce
- ubercart
- ueeshop
- unas
- unicart
- unilog
- unipage
- vendaenlinea
- vendre
- vepaar
- viart
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vpcart
- vtex
- w2repeat
- waca
- webflow
- webmercs
- webstore
- weeblycommerce
- weedmaps
- welcart
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wpecommerce
- wshop
- wuilt
- wx3
- xanario
- xcart
- xonic
- xpage
- xshoppy
- xtcommerce
- yahoo
- yampi
- yns
- 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 that have vendor_count rank less than or equal to the provided integer value.
Filters the results to Domains that have vendor_count greater than or equal to the provided integer value.
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 in Store Currency(Asc) |
| -avgpp,rank | Average Product Price in Store Currency(Desc) |
| avgppusd,rank | Average Product Price in USD (Asc) |
| -avgppusd,rank | Average Product Price in USD (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": [
{
"theme": {
"name": "ultimate",
"style": "Unknown",
"vendor": "Unknown",
"version": "3.26.25"
},
"alternates": {
"en": "byrna.com",
"pt": "byrna.com",
"x-default": "byrna.com",
"zh-hant": "byrna.com"
},
"trustpilot": {
"review_count": 374,
"avg_rating": 4.5
},
"yotpo": {
"review_count": 36296,
"avg_rating": 4.6258817
},
"plan": "Shopify Plus",
"cluster_best_ranked": "byrna.com",
"city": "Andover",
"last_updated_at": "2026-07-14T00:00:00",
"subregion": "Northern America",
"contact_page": "https://byrna.com/pages/contact-us",
"country_code": "US",
"currency_code": "USD",
"title": "Byrna | Best Non Lethal Self-Defense Products",
"administrative_area_level_1": "Massachusetts",
"state": "Active",
"icon": "https://byrna.com/cdn/shop/files/Favicon_228x228.png?v=1676341627",
"brand_advocate_page": "https://byrna.com/pages/byrna-affiliate-application",
"faq_page": "https://byrna.com/pages/faq",
"career_page": "https://byrna.com/pages/careers",
"returns_page": "https://byrna.com/pages/return-policy",
"region": "Americas",
"language_code": "en",
"about_us": "https://byrna.com/pages/about",
"tracking_page": "https://byrna.com/policies/shipping-policy",
"platform_domain": "byrna-defense.myshopify.com",
"last_plan_change_at": "2023-09-13T00:00:00",
"platform": "shopify",
"location": "Andover, MA, USA",
"locs": [
"pt",
"zh"
],
"og_image": "https://byrna.com/cdn/shop/files/Byrna-Logo_0b27cd06-0a17-4c3c-8f72-921a0d8a66e3_1200x.jpg?v=1688560167",
"max_product_published_at": "2026-04-14T00:00:00",
"merchant_name": "Byrna",
"avg_price_formatted": "$134.35",
"created_at": "2018-11-02T00:00:00",
"name": "byrna.com",
"tld1": "byrna.com",
"description": "One of the best defense products available is the Byrna SD, a legal, non-lethal self-defense weapon that fires pepper filled rounds up to 60 feet using CO2. Save lives without the risk of taking one. Empower yourself today!",
"retailer_page": "https://byrna.com/pages/dealer-locator",
"ticker": "BYRN",
"contact_info": [
{
"description": "Providing civilians and professionals with safe, effective and reliable less-lethal options without the need to resort to lethal force. #selfdefense",
"followers": 9638,
"followers_90d": 60,
"posts": 506,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/byrnanation"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/byrnanation"
},
{
"source": "/",
"type": "instagram",
"value": "https://www.instagram.com/byrnanation"
},
{
"source": "/",
"type": "email",
"value": "international@byrna.com"
},
{
"description": "We make the Byrna - the first handheld personal security device available for all Americans. We\u0026#39;re all about changing the personal safety with something comp...",
"followers": 68900,
"followers_90d": 1365,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/channel/UCsd__wC1miuRs0Q8uAttc6Q"
},
{
"source": "/pages/terms-of-use",
"type": "email",
"value": "info@byrna.com"
},
{
"source": "/pages/first-aid",
"type": "phone",
"value": "813.248.0585"
},
{
"source": "/pages/shipping-policy",
"type": "phone",
"value": "(978) 868-5011"
},
{
"source": "/pages/byrna-affiliate-application",
"type": "email",
"value": "influencers@byrna.com"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/byrna"
}
],
"aliases": [
"byrnaprotects.com"
],
"apps": [
{
"installed_at": "2024-07-02T22:22:09Z",
"average_rating": "4.5",
"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": "Standard",
"monthly_cost": "$5/month",
"monthly_cost_cents": 500
},
{
"name": "Premium",
"monthly_cost": "$25/month",
"monthly_cost_cents": 2500
},
{
"name": "Enterprise",
"monthly_cost": "$75/month",
"monthly_cost_cents": 7500
}
],
"categories": [
"accessibility"
],
"integrates_with": [
"Shopify Admin"
],
"review_count": 24,
"installs": 12542,
"instp": 0.004367592339475659,
"installs_30d": -48,
"installs_90d": -107
},
{
"installed_at": "2022-07-25T15:16:16Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/address-validator",
"state": "Active",
"description": "Use shipping address validation to save money by preventing failed \u0026 delayed deliveries",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/47694bcc580db734557159405f8a95e2/icon/CNboqZD-vYgDEAE=.png",
"name": "Clearer.io Address Validator",
"token": "address-validator",
"platform": "shopify",
"vendor_name": "RoboTurk",
"vendor_url": "https://apps.shopify.com/partners/developer-dcf4b0d01a819470",
"vendor_email": "support@roboturk.co",
"vendor_website": "https://addressvalidator.com/",
"vendor_address": "116 Huntington Ave, 15th Floor, Boston, MA, 02116, US",
"id": "1.address-validator",
"created_at": "2017-01-04T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"shipping",
"shipping solutions - other"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Admin\n \n \n ReCharge"
],
"review_count": 192,
"installs": 2722,
"instp": 0.0009479019572677998,
"installs_30d": -46,
"installs_90d": 41,
"reviews_90d": 3
},
{
"removed_at": "2025-02-12T12:19:56.909296373Z",
"installed_at": "2026-02-24T06:58:35Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/age-verifier-by-omega",
"state": "Inactive",
"free_trial_duration": "168h0m0s",
"description": "Blockify Age verification popup: Age check, Elevate Trust, Safeguard Store, Ensure Legal Compliance",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/e03e0948951b94a7b424d1a55634d891/icon/CNe60o2awokDEAE=.png",
"name": "Blockify Age Verification 18+",
"token": "age-verifier-by-omega",
"platform": "shopify",
"vendor_name": "Blockify",
"vendor_url": "https://apps.shopify.com/partners/blockify",
"vendor_email": "support@omegatheme.com",
"vendor_website": "https://www.omegatheme.com",
"vendor_address": "18/11 Thai Ha, Ha Noi, 70000, VN",
"id": "1.age-verifier-by-omega",
"created_at": "2017-11-15T00:00:00",
"categories": [
"legal",
"accessibility",
"age verification",
"data privacy",
"policy management",
"checkboxes",
"pop-ups",
"color and font",
"widget position",
"custom css",
"page restriction",
"remember me",
"custom text",
"buttons",
"pop-ups",
"age verification",
"templates",
"triggers and rules",
"analytics",
"tracking"
],
"integrates_with": [
"Checkout"
],
"review_count": 126,
"installs": 2786,
"instp": 0.0009701891450948164,
"installs_30d": 1890,
"installs_90d": 143
},
{
"installed_at": "2025-01-31T01:54:15Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/aspireiq-elevate",
"state": "Active",
"description": "Aspire is a leading influencer marketing platform powering high-growth e-commerce brands.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b26a1a2bc0869da6fcf49d741058de8e/icon/CNq9qob5o_cCEAE=.png",
"name": "Aspire",
"token": "aspireiq-elevate",
"platform": "shopify",
"vendor_name": "Aspire",
"vendor_url": "https://apps.shopify.com/partners/aspireiq",
"vendor_email": "app-support@aspireiq.com",
"vendor_website": "https://aspire.io/",
"vendor_address": "701 Tillery Street #12 #148, Austin, TX, 78702, US",
"id": "1.aspireiq-elevate",
"created_at": "2020-08-18T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
}
],
"categories": [
"ads",
"analytics"
],
"review_count": 12,
"installs": 663,
"instp": 0.00023088133639550008,
"installs_30d": 30,
"installs_90d": 69
},
{
"installed_at": "2021-03-27T09:46:11Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/bundle-products-by-thimatic",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Create product bundles, BOGO, volume discounts, \u0026 upsell offers with the bundles app to increase AOV",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b8732a6d6720ab63e7b0e4d41175a56e/icon/CPrRo8zLiIsDEAE=.png",
"name": "Rebolt Bundles \u0026 Upsell App",
"token": "bundle-products-by-thimatic",
"platform": "shopify",
"vendor_name": "WebContrive",
"vendor_url": "https://apps.shopify.com/partners/webcontrive",
"vendor_email": "support@webcontrive.com",
"vendor_website": "https://reboltbundle.com?utm_campaign=app_listing",
"vendor_address": "Middletown, DE, DE, US",
"id": "1.bundle-products-by-thimatic",
"created_at": "2018-07-16T00:00:00",
"plans": [
{
"name": "FREE FOREVER",
"monthly_cost": "Free to install"
},
{
"name": "Growth",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Custom Solution",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
}
],
"categories": [
"product bundles",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify POS\n\n \n \n Shopify Admin\n \n \n Cart Drawer Apps\n \n \n Page Builder Apps\n \n \n PageFly \u0026 GemPages\n \n \n Product Reviews Apps\n \n \n Subscription Apps"
],
"review_count": 562,
"installs": 831,
"instp": 0.0002893852044414186,
"installs_30d": -17,
"installs_90d": -50,
"reviews_30d": 9,
"reviews_90d": 13
},
{
"installed_at": "2026-04-23T18:38:28Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize your thank you and order status pages. Add content blocks and order value limits.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0d93ad03058a8f1d59487bd527ab382/icon/CNmn4qi31YIDEAE=.png",
"name": "Shopify 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\n\n \n \n Customer accounts\n\n \n \n Shopify Admin"
],
"review_count": 189,
"installs": 40012,
"instp": 0.01393367123960294,
"installs_30d": 406,
"installs_90d": 2794,
"reviews_30d": 3,
"reviews_90d": 16
},
{
"installed_at": "2024-02-08T03:39:01Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/cj-network-integration",
"state": "Active",
"description": "Reach scalable and sustainable growth all while future-proofing your performance-based marketing",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/aa24095c6459e30da0b320ecd45e59d1/icon/CPDuq_i_2f0CEAE=.png",
"name": "CJ Network Integration",
"token": "cj-network-integration",
"platform": "shopify",
"vendor_name": "CJ Affiliate",
"vendor_url": "https://apps.shopify.com/partners/cj-affiliate5",
"vendor_email": "support@cj.com",
"vendor_website": "https://www.cj.com/",
"vendor_address": "530 E Montecito St, Santa Barbara, CA, 93103, US",
"id": "1.cj-network-integration",
"created_at": "2020-10-16T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"affiliate programs"
],
"integrates_with": [
"Checkout"
],
"review_count": 10,
"installs": 341,
"instp": 0.0001187489226408228,
"installs_30d": -1,
"installs_90d": -5
},
{
"installed_at": "2025-05-13T10:26:58Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/dataships",
"state": "Active",
"free_trial_duration": "120h0m0s",
"description": "Get more email and SMS opt-ins at checkout. Watch your revenue grow.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2bf4b3b68541abd375755a6305557e71/icon/CNybxdnQvIQDEAE=.png",
"name": "Dataships Checkout Opt‑in",
"token": "dataships",
"platform": "shopify",
"vendor_name": "Dataships Limited",
"vendor_url": "https://apps.shopify.com/partners/dataships3",
"vendor_email": "support@dataships.io",
"vendor_website": "https://dataships.io/",
"vendor_address": "University College Dublin, Belfield Innovation Park, Dublin, D, D04 V2P1, IE",
"id": "1.dataships",
"created_at": "2023-01-04T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Plus",
"monthly_cost": "$1,500/month",
"monthly_cost_cents": 150000
},
{
"name": "Pro",
"monthly_cost": "$3,000/month",
"monthly_cost_cents": 300000
},
{
"name": "Custom",
"monthly_cost": "$3,500/month",
"monthly_cost_cents": 350000
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Checkout\n\n \n \n Klaviyo"
],
"review_count": 75,
"installs": 584,
"instp": 0.00020337058892152643,
"installs_30d": 18,
"installs_90d": 91,
"reviews_30d": 5,
"reviews_90d": 9
},
{
"installed_at": "2025-05-20T06:09:50Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/form-builder-by-hulkapps",
"state": "Active",
"free_trial_duration": "72h0m0s",
"description": "Build unlimited forms with custom fields easily for contact forms or surveys using Form Builder.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5f594019010246ebf55d691bd099265f/icon/CPLUib3Tpv0CEAE=.png",
"name": "Hulk Contact Form Builder",
"token": "form-builder-by-hulkapps",
"platform": "shopify",
"vendor_name": "HulkApps",
"vendor_url": "https://apps.shopify.com/partners/hulk-code",
"vendor_email": "help@hulk-support.com",
"vendor_website": "https://www.hulkapps.com/?utm_campaign=websiteURL",
"vendor_address": "1 Kingdom Street, Paddington Central, London, ENG, W2 6BD, GB",
"id": "1.form-builder-by-hulkapps",
"created_at": "2017-08-11T00:00:00",
"plans": [
{
"name": "Basic Plan",
"monthly_cost": "Free"
},
{
"name": "Pro Plan",
"monthly_cost": "$9.90/month",
"monthly_cost_cents": 990
},
{
"name": "Pro+ Plan",
"monthly_cost": "$24.90/month",
"monthly_cost_cents": 2490
}
],
"categories": [
"forms",
"surveys"
],
"integrates_with": [
"Shopify Flow\n \n \n Shopify Admin\n \n \n Google Sheets\n \n \n Klaviyo\n \n \n MailChimp\n \n \n Slack\n \n \n Stripe",
"PayPal\n \n \n Zapier",
"ZeroBounce"
],
"review_count": 1771,
"installs": 30967,
"instp": 0.01078386477248786,
"installs_30d": 379,
"installs_90d": 1055,
"reviews_30d": 58,
"reviews_90d": 134
},
{
"installed_at": "2022-04-27T09:43:59Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/freegifts",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Boost AOV with BOGO, Buy x get y, Free gift with purchase, Bundle, Volume Discount, Checkout Upsell",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/181c217c862c543710a39e03910a2c86/icon/CNfm2b_S3YcDEAE=.png",
"name": "BOGOS: Free Gift Bundle Upsell",
"token": "freegifts",
"platform": "shopify",
"vendor_name": "BOGOS",
"vendor_url": "https://apps.shopify.com/partners/bogos",
"vendor_email": "support@secomapp.com",
"vendor_website": "https://bogos.io/",
"vendor_address": "Tam Ky - Nghia Tru, Hung Yen, 160000, VN",
"id": "1.freegifts",
"created_at": "2014-12-17T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Basic",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
},
{
"name": "Grow",
"monthly_cost": "$49.99/month",
"monthly_cost_cents": 4999
},
{
"name": "Plus",
"monthly_cost": "$109.99/month",
"monthly_cost_cents": 10999
}
],
"categories": [
"upsell and cross-sell",
"product bundles"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Cart Drawers - Slide Cart\n \n \n Facebook Pixels\n \n \n Gift card\n \n \n Headless - Hydrogen\n \n \n Subscriptions\n \n \n Transcy"
],
"review_count": 3858,
"installs": 14979,
"instp": 0.005216246663451276,
"installs_30d": 227,
"installs_90d": 975,
"reviews_30d": 124,
"reviews_90d": 446
},
{
"installed_at": "2025-01-31T01:54:15Z",
"average_rating": "3.2",
"app_store_url": "https://apps.shopify.com/gobot-1",
"state": "Active",
"description": "Increase conversions by helping shoppers find the right products with AI guided shopping quizzes.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f2e58a13f00fdbef1ff34938dd13905c/icon/CIHn2cL0lu8CEAE=.png",
"name": "Gobot ‑ AI Chatbot + Quiz",
"token": "gobot-1",
"platform": "shopify",
"vendor_name": "Gobot",
"vendor_url": "https://apps.shopify.com/partners/developer-adae51e12440cbac",
"vendor_email": "max@getgobot.com",
"vendor_website": "https://www.getgobot.com/",
"vendor_address": "378 Crest Road, Ridgewood, NJ, 07450, US",
"id": "1.gobot-1",
"created_at": "2017-08-03T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"pop-ups",
"upsell and cross-sell"
],
"integrates_with": [
"klaviyo\n \n \n drip\n \n \n attentive\n \n \n postscript\n \n \n gorgias\n \n \n zendesk"
],
"review_count": 20,
"installs": 445,
"instp": 0.00015496560285972478,
"installs_30d": 1,
"installs_90d": -29
},
{
"installed_at": "2025-03-31T17:47:58Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/govx-id",
"state": "Active",
"description": "Launch a protected discount offer for military, first responders, nurses \u0026 teachers.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8b8823fab80978bb3499ad4a9423c429/icon/CKX5sKf0lu8CEAE=.jpg",
"name": "GOVX ID Exclusive Discounts",
"token": "govx-id",
"platform": "shopify",
"vendor_name": "GOVX",
"vendor_url": "https://apps.shopify.com/partners/govx1",
"vendor_email": "partnersupport@govx.com",
"vendor_website": "https://www.govxinc.com/",
"vendor_address": "9605 Scranton Road, Suite 650, San Diego, CA, 92121, US",
"id": "1.govx-id",
"created_at": "2019-10-15T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"discounts"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify POS\n\n \n \n Shopify Admin"
],
"review_count": 285,
"installs": 6332,
"instp": 0.0022050386456354547,
"installs_30d": 107,
"installs_90d": 304,
"reviews_30d": 3,
"reviews_90d": -1
},
{
"installed_at": "2026-04-30T16:05:49Z",
"average_rating": "4.5",
"app_store_url": "https://apps.shopify.com/impact-1",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Drive more sales and acquire new customers with affiliate marketing.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/6f3a1ed4069a8ad92504e6d39360469b/icon/CLTr3bb0lu8CEAE=.png",
"name": "impact.com Affiliate Marketing",
"token": "impact-1",
"platform": "shopify",
"vendor_name": "impact.com",
"vendor_url": "https://apps.shopify.com/partners/impact9",
"vendor_email": "techpartners@impact.com",
"id": "1.impact-1",
"created_at": "2020-06-17T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$30/month",
"monthly_cost_cents": 3000
},
{
"name": "Essentials",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Professional",
"monthly_cost": "$2,500/month",
"monthly_cost_cents": 250000
}
],
"categories": [
"affiliate programs",
"content - other"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Admin\n \n \n Bold Subscriptions\n \n \n Klaviyo\n \n \n Recharge"
],
"review_count": 198,
"installs": 3817,
"instp": 0.001329221811495662,
"installs_30d": 97,
"installs_90d": 290,
"reviews_90d": 2
},
{
"installed_at": "2019-10-05T11:44:04Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/instafeed",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Display your Instagram Reels, feeds, shoppable videos \u0026 UGC as a gallery on your store",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/ff3b61a8718cbdeb80d3a8dcf0b25014/icon/CMuQhfjG05EDEAE=.png",
"name": "Instafeed ‑ Instagram Feed",
"token": "instafeed",
"platform": "shopify",
"vendor_name": "Mintt Studio",
"vendor_url": "https://apps.shopify.com/partners/mintt-studio",
"vendor_email": "support@minttstudio.com",
"vendor_website": "https://minttstudio.com/",
"vendor_address": "Rua Parque da República, 116, Vila Nova de Gaia, PT-13, 4430-164, PT",
"id": "1.instafeed",
"created_at": "2016-09-30T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "Free"
},
{
"name": "Pro",
"monthly_cost": "$8/month",
"monthly_cost_cents": 800
},
{
"name": "Plus",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
}
],
"categories": [
"social proof",
"image gallery"
],
"integrates_with": [
"Shopify Admin\n \n \n Facebook\n \n \n GemPages\n \n \n Instagram\n \n \n Judge.me\n \n \n Loox\n \n \n Shop App"
],
"review_count": 1920,
"installs": 238984,
"instp": 0.08322314524455836,
"installs_30d": 732,
"installs_90d": 3564,
"reviews_30d": 81,
"reviews_90d": 273
},
{
"installed_at": "2025-07-24T21:08:53Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/intelligems",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "A/B test prices, discounts, content, shipping, checkout, post-purchase, and more with AI.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/63fb68ea6dcc0f2694c656e6dd5a895f/icon/CMeOqL2y3Y8DEAE=.png",
"name": "Intelligems: A/B Testing",
"token": "intelligems",
"platform": "shopify",
"vendor_name": "Intelligems",
"vendor_url": "https://apps.shopify.com/partners/intelligems",
"vendor_email": "support@intelligems.io",
"vendor_website": "https://intelligems.io",
"vendor_address": "1 Dock 72 Way, 7th Floor c/o wework, New York, NY, 11205, US",
"id": "1.intelligems",
"created_at": "2021-12-01T00:00:00",
"plans": [
{
"name": "Smart Content",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
},
{
"name": "Smart Merchandise",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Smart Shipping",
"monthly_cost": "$112/month",
"monthly_cost_cents": 11200
},
{
"name": "Unlimited",
"monthly_cost": "$349/month",
"monthly_cost_cents": 34900
}
],
"categories": [
"pricing optimization",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Claude\n \n \n Google Analytics\n \n \n Heatmap.com\n \n \n Klaviyo\n \n \n Microsoft Clarity\n \n \n ReCharge"
],
"review_count": 158,
"installs": 6574,
"instp": 0.0022893120746063614,
"installs_30d": 165,
"installs_90d": 522,
"reviews_30d": 5,
"reviews_90d": 21
},
{
"installed_at": "2023-04-27T03:58:24Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "AI marketing and customer service automation for email marketing, SMS, and WhatsApp to grow faster.",
"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://developers.klaviyo.com/en",
"vendor_address": "125 Summer St, Floor 7, Boston, MA, 02111, 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": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Aftership\n \n \n Gorgias\n \n \n Meta Advertising\n \n \n Recharge\n \n \n TikTok Advertising\n \n \n Typeform"
],
"review_count": 2975,
"installs": 413938,
"instp": 0.1441486555428062,
"installs_30d": 3367,
"installs_90d": 15900,
"reviews_30d": 115,
"reviews_90d": 403
},
{
"installed_at": "2025-02-13T02:47:03Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/knocommerce",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Unlock insights with post-purchase surveys for attribution, CRO, CX, product development, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/6664ab25bef1cfefc21a682418c4c0f0/icon/CL_3m5Xb2O8CEAE=.jpeg",
"name": "KNO Post Purchase Surveys",
"token": "knocommerce",
"platform": "shopify",
"vendor_name": "KnoCommerce Inc",
"vendor_url": "https://apps.shopify.com/partners/prove-it",
"vendor_email": "hello@knocommerce.com",
"vendor_website": "https://knocommerce.com",
"vendor_address": "8 The Green, Ste A, Dover, DE, 19901, US",
"id": "1.knocommerce",
"created_at": "2020-10-19T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Analyst",
"monthly_cost": "$119/month",
"monthly_cost_cents": 11900
},
{
"name": "Pro",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
}
],
"categories": [
"surveys",
"analytics"
],
"integrates_with": [
"Customer accounts\n\n \n \n Shopify Flow\n \n \n Google Analytics\n \n \n Klaviyo\n \n \n Peel Insights\n \n \n ReCharge\n \n \n TikTok\n \n \n Triple Whale"
],
"review_count": 116,
"installs": 3018,
"instp": 0.0010509802009677515,
"installs_30d": 15,
"installs_90d": 100,
"reviews_30d": 2,
"reviews_90d": 20
},
{
"installed_at": "2020-07-15T03:14:47Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/lucky-orange",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Confidently optimize your store. Use visual analytics \u0026 checkout tracking to make smarter decisions.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/6347e264c8d3e24d7b2e8687c58213a8/icon/CNWK6dflsPACEAE=.png",
"name": "Lucky Orange Heatmaps \u0026 Replay",
"token": "lucky-orange",
"platform": "shopify",
"vendor_name": "Lucky Orange LLC",
"vendor_url": "https://apps.shopify.com/partners/luckyorange",
"vendor_email": "support@luckyorange.com",
"vendor_website": "https://www.luckyorange.com/",
"vendor_address": "8665 West 96th Street, suite 100, Overland Park, KS, 66212, US",
"id": "1.lucky-orange",
"created_at": "2014-07-08T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Launch",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$89/month",
"monthly_cost_cents": 8900
}
],
"categories": [
"analytics",
"site optimization - other"
],
"integrates_with": [
"Checkout\n\n \n \n Google Analytics\n \n \n HubSpot\n \n \n Optimizely\n \n \n Zapier"
],
"review_count": 814,
"installs": 29582,
"instp": 0.010301556098418829,
"installs_30d": -1294,
"installs_90d": -2399,
"reviews_30d": 7,
"reviews_90d": 13
},
{
"installed_at": "2026-01-12T21:26:17Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/octane-ai-quiz-personalization",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost Sales with AI Quizzes \u0026 Funnels That Guide Shoppers, Personalize Products, \u0026 Drive Conversions",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/660d02b21dc203afa3147b8a84d27cf3/icon/CPi6_-Sg3pADEAE=.png",
"name": "Octane AI: Advanced Quiz Maker",
"token": "octane-ai-quiz-personalization",
"platform": "shopify",
"vendor_name": "Octane AI",
"vendor_url": "https://apps.shopify.com/partners/octane-ai",
"vendor_email": "human@octaneai.com",
"vendor_website": "https://www.octaneai.com",
"vendor_address": "PO Box 7775 #94590, San Francisco, CA, 94120, US",
"id": "1.octane-ai-quiz-personalization",
"created_at": "2018-03-23T00:00:00",
"plans": [
{
"name": "Octane Basic",
"monthly_cost": "$50/month",
"monthly_cost_cents": 5000
},
{
"name": "Octane Plus",
"monthly_cost": "$200/month",
"monthly_cost_cents": 20000
},
{
"name": "Octane Enterprise",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Octane Unlimited",
"monthly_cost": "$2,000/month",
"monthly_cost_cents": 200000
}
],
"categories": [
"pop-ups",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n attentive\n \n \n Gorgias\n \n \n klaviyo\n \n \n postscript\n \n \n recharge\n \n \n Tapcart"
],
"review_count": 191,
"installs": 3746,
"instp": 0.0013044969625000654,
"installs_30d": -52,
"installs_90d": 78,
"reviews_30d": 3,
"reviews_90d": 2
},
{
"installed_at": "2026-04-30T16:05:49Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/polar-analytics",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "A multichannel AI analytics platform built to unify your ecommerce data and actively grow revenue.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/168e780c1bd063b97d507417cc056c89/icon/CKeDyNC1m4EDEAE=.png",
"name": "Polar: AI‑Analytics Platform",
"token": "polar-analytics",
"platform": "shopify",
"vendor_name": "Polar Analytics",
"vendor_url": "https://apps.shopify.com/partners/the-growth-team",
"vendor_email": "hey@polaranalytics.co",
"vendor_website": "https://www.polaranalytics.com",
"vendor_address": "Paris, FR",
"id": "1.polar-analytics",
"created_at": "2020-10-28T00:00:00",
"plans": [
{
"name": "Core Plan, from",
"monthly_cost": "$750/month",
"monthly_cost_cents": 75000
}
],
"categories": [
"analytics",
"ads"
],
"integrates_with": [
"Checkout\n\n \n \n Amazon\n \n \n Google Analytics\n \n \n Klaviyo\n \n \n Meta\n \n \n Recharge\n \n \n Tiktok"
],
"review_count": 103,
"installs": 1776,
"instp": 0.0006184694621997107,
"installs_30d": 47,
"installs_90d": 169,
"reviews_30d": 4,
"reviews_90d": 2
},
{
"installed_at": "2026-03-25T06:34:58Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/postpilot",
"state": "Active",
"free_trial_duration": "2160h0m0s",
"description": "Send personalized one-off or triggered postcard campaigns to customers \u0026 prospects. As easy as email",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a7b78d7ac7cf0ee4e49cc4fe002c4bf7/icon/CPOW6pSOrIgDEAE=.jpeg",
"name": "PostPilot Direct Mail Platform",
"token": "postpilot",
"platform": "shopify",
"vendor_name": "PostPilot",
"vendor_url": "https://apps.shopify.com/partners/mailsnail",
"vendor_email": "support@PostPilot.com",
"vendor_website": "https://www.PostPilot.com",
"vendor_address": "169 Madison Ave, Suite 11452, New York, NY, 10016, US",
"id": "1.postpilot",
"created_at": "2018-05-24T00:00:00",
"plans": [
{
"name": "Kicking the Tires",
"monthly_cost": "Free"
},
{
"name": "Growth Plan",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Pro Plan",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"ads"
],
"integrates_with": [
"Attentive\n \n \n csv\n \n \n klaviyo\n \n \n recharge\n \n \n Sendlane\n \n \n Yotpo"
],
"review_count": 146,
"installs": 897,
"instp": 0.0003123688668880295,
"installs_30d": 12,
"installs_90d": 109,
"reviews_30d": 3,
"reviews_90d": 3
},
{
"installed_at": "2026-01-12T21:26:17Z",
"average_rating": "4.3",
"app_store_url": "https://apps.shopify.com/product-ads-by-criteo",
"state": "Active",
"description": "Find and convert more shoppers into customers with AI-powered, cross-channel ads—launched in minutes",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/6cca7cd848166f80531b72d1aaf646e0/icon/CLGSyJqp6_cCEAE=.png",
"name": "Criteo GO",
"token": "product-ads-by-criteo",
"platform": "shopify",
"vendor_name": "Criteo",
"vendor_url": "https://apps.shopify.com/partners/criteo-fr",
"vendor_email": "support@criteo.com",
"vendor_website": "https://www.criteo.com/",
"vendor_address": "32 rue blanche, société Criteo, Paris, 75009, FR",
"id": "1.product-ads-by-criteo",
"created_at": "2022-06-24T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"ads"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n Bluecore\n \n \n Emarsys\n \n \n Google Analytics 4\n \n \n Klaviyo\n \n \n Meta\n \n \n Oracle"
],
"review_count": 34,
"installs": 6503,
"instp": 0.0022645872256107646,
"installs_30d": 13,
"installs_90d": 71
},
{
"installed_at": "2021-03-11T03:12:51Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/rebuy",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "AI-powered product recommendations \u0026 search: cart, checkout, post-purchase upsells, and A/B testing",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9a87fc6fa46c1e06f03627e9ef094b51/icon/CLHN0M2Pi_wCEAE=.png",
"name": "Rebuy Personalization Engine",
"token": "rebuy",
"platform": "shopify",
"vendor_name": "Rebuy",
"vendor_url": "https://apps.shopify.com/partners/rebuy1",
"vendor_email": "support@rebuyengine.com",
"vendor_website": "https://www.rebuyengine.com",
"vendor_address": "6004 Saint Johns Ave, Edina, MN, 55424, US",
"id": "1.rebuy",
"created_at": "2019-05-23T00:00:00",
"plans": [
{
"name": "Dev stores",
"monthly_cost": "Free"
},
{
"name": "Rebuy Monetize",
"monthly_cost": "Free"
},
{
"name": "Starts as low as",
"monthly_cost": "$25/month",
"monthly_cost_cents": 2500
}
],
"categories": [
"upsell and cross-sell",
"cart customization"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Attentive\n \n \n Klaviyo\n \n \n Malomo\n \n \n Okendo\n \n \n Recharge\n \n \n Route"
],
"review_count": 808,
"installs": 15085,
"instp": 0.005253159818289772,
"installs_30d": 175,
"installs_90d": 655,
"reviews_30d": 8,
"reviews_90d": 21
},
{
"installed_at": "2020-12-05T02:55:15Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/redirector",
"state": "Active",
"free_trial_duration": "120h0m0s",
"description": "Redirector allows you to redirect customers or display localized info based on their location",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/1f53291e24e5882c711e82e148aab0af/icon/CJf39cH0lu8CEAE=.png",
"name": "Redirector",
"token": "redirector",
"platform": "shopify",
"vendor_name": "daxanema",
"vendor_url": "https://apps.shopify.com/partners/modules4u",
"vendor_email": "info@daxanema.com",
"vendor_website": "https://daxanema.com",
"vendor_address": "907 Silvercord 2, 30 Canton Road, Hong Kong, KL, 0000, HK",
"id": "1.redirector",
"created_at": "2017-02-27T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$2.99/month",
"monthly_cost_cents": 299
}
],
"categories": [
"geolocation",
"currency and translation"
],
"review_count": 3,
"installs": 112,
"instp": 0.000039002578697279045,
"installs_30d": -2,
"installs_90d": -3
},
{
"installed_at": "2022-03-30T11:44:16Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/subscription-payments",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "The subscription platform built for the world’s fastest-growing brands.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0009de8c024a6126315f5dcd4250fd61/icon/CK6otpbp4PwCEAE=.jpeg",
"name": "Recharge Subscriptions App",
"token": "subscription-payments",
"platform": "shopify",
"vendor_name": "Recharge",
"vendor_url": "https://apps.shopify.com/partners/recharge",
"vendor_email": "support@rechargeapps.com",
"vendor_website": "https://rechargepayments.com/developers/",
"vendor_address": "1507 20th St, Santa Monica, CA, 90404, US",
"id": "1.subscription-payments",
"created_at": "2014-10-14T00:00:00",
"plans": [
{
"name": "25-50",
"monthly_cost": "$25/month",
"monthly_cost_cents": 2500
},
{
"name": "Starter",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Plus",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"subscriptions",
"product bundles"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n Attentive\n \n \n Avalara\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Stripe\n \n \n Triple Whale"
],
"review_count": 2460,
"installs": 51787,
"instp": 0.0180341655624642,
"installs_30d": 888,
"installs_90d": -2341,
"reviews_30d": 21,
"reviews_90d": 82
},
{
"installed_at": "2020-08-22T01:17:37Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/swell",
"state": "Active",
"description": "Turn one-time shoppers into lifelong customers with a flexible loyalty and rewards program.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f693caaaf4c437600611eb42fc8da5d3/icon/CI_cy9bMiocDEAE=.png",
"name": "Yotpo: Loyalty Rewards Program",
"token": "swell",
"platform": "shopify",
"vendor_name": "Yotpo - L\u0026R",
"vendor_url": "https://apps.shopify.com/partners/swell-rewards",
"vendor_email": "loyaltyrefferals_support@yotpo.com",
"vendor_website": "https://www.yotpo.com/platform/loyalty/",
"vendor_address": "180 Madison Avenue, Yotpo Ltd, New York, NY, 10016, US",
"id": "1.swell",
"created_at": "2015-07-28T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Pro",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"loyalty and rewards"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n 2048 Variants\n \n \n Gorgias\n \n \n Klaviyo\n \n \n ReCharge\n \n \n Yotpo"
],
"review_count": 889,
"installs": 12117,
"instp": 0.004219591482811877,
"installs_30d": -61,
"installs_90d": -166,
"reviews_30d": -7,
"reviews_90d": 2
},
{
"installed_at": "2022-12-10T07:54:28Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/tolstoy",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Create shoppable videos, UGC reels, AI ads \u0026 Shop App content for storefront, TikTok Shop, and Meta.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8bd7122773fa7246870cdd8376857423/icon/CMO26ZC3qIMDEAE=.png",
"name": "Tolstoy: Shoppable Video \u0026 UGC",
"token": "tolstoy",
"platform": "shopify",
"vendor_name": "Tolstoy",
"vendor_url": "https://apps.shopify.com/partners/tolstoy",
"vendor_email": "support@gotolstoy.com",
"vendor_website": "https://www.gotolstoy.com",
"vendor_address": "Tel Aviv, Tel Aviv, 123456, IL",
"id": "1.tolstoy",
"created_at": "2020-12-02T00:00:00",
"plans": [
{
"name": "Tolstoy Free",
"monthly_cost": "Free"
},
{
"name": "Shoppable Plus",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Bundle Plus",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Bundle Pro",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"video and livestream",
"social proof"
],
"integrates_with": [
"Checkout\n\n \n \n Meta Ads",
"Klaviyo\n \n \n Shop App",
"TikTok Shop\n \n \n Shoppable videos",
"AI ads\n \n \n TikTok",
"Instagram Reels\n \n \n UGC",
"Product videos\n \n \n Yotpo",
"Okendo",
"Loox"
],
"review_count": 260,
"installs": 10028,
"instp": 0.0034921237426456635,
"installs_30d": -235,
"installs_90d": 303,
"reviews_30d": 13,
"reviews_90d": 27
},
{
"installed_at": "2021-07-30T21:19:49Z",
"average_rating": "4.4",
"app_store_url": "https://apps.shopify.com/transcy-multiple-languages",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Auto-translate your store \u0026 convert currency by visitor location. Sell globally with AI.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/ca153fbdb5d5bc9bb3402f61073dbcb2/icon/CLOVkZCGgf0CEAE=.png",
"name": "Transcy: AI Language Translate",
"token": "transcy-multiple-languages",
"platform": "shopify",
"vendor_name": "FireGroup",
"vendor_url": "https://apps.shopify.com/partners/transcy",
"vendor_email": "support@transcy.io",
"vendor_website": "https://transcy.io/",
"vendor_address": "FIREAPPS JSC, 22F Flemington Tower, 182 Le Dai Hanh, Phu Tho Ward - TIN: 0314919972 - EID: 079211809826, Ho Chi Minh City, 700000, VN",
"id": "1.transcy-multiple-languages",
"created_at": "2020-05-28T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Local Plus",
"monthly_cost": "$14.90/month",
"monthly_cost_cents": 1490
},
{
"name": "Regional",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "Continental",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
}
],
"categories": [
"currency and translation",
"geolocation"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n ChatGPT-4o",
"4o-mini and more\n \n \n DeepL Translator\n \n \n GemPages",
"PageFly",
"EComposer\n \n \n Kudosi",
"Judge.me",
"OneMobile\n \n \n Printful",
"Growave\n \n \n Yotpo",
"Shipping Bar",
"BOGOS"
],
"review_count": 2434,
"installs": 54931,
"instp": 0.019129023664466387,
"installs_30d": 223,
"installs_90d": -3067,
"reviews_30d": 4,
"reviews_90d": -51
},
{
"installed_at": "2023-04-06T09:59:05Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/yotpo-social-reviews",
"state": "Active",
"description": "Collect and display product reviews and ratings to showcase social proof and build trust.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/659062da3dcade1068da9e28c3d120c5/icon/CIzTtYS0i4cDEAE=.png",
"name": "Yotpo: Product Reviews App",
"token": "yotpo-social-reviews",
"platform": "shopify",
"vendor_name": "Yotpo",
"vendor_url": "https://apps.shopify.com/partners/yotpo",
"vendor_email": "Reviews_support@yotpo.com",
"vendor_website": "https://www.yotpo.com/",
"vendor_address": "180 Madison Avenue, New York, NY, 10016, US",
"id": "1.yotpo-social-reviews",
"created_at": "2011-11-15T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$15/month",
"monthly_cost_cents": 1500
},
{
"name": "Pro",
"monthly_cost": "$119/month",
"monthly_cost_cents": 11900
}
],
"categories": [
"product reviews",
"seo"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Facebook\n \n \n Google\n \n \n Instagram\n \n \n Klaviyo\n \n \n pagefly"
],
"review_count": 4372,
"installs": 37652,
"instp": 0.013111831188481703,
"installs_30d": -361,
"installs_90d": -646,
"reviews_30d": -15,
"reviews_90d": -25
},
{
"installed_at": "2021-06-23T09:44:37Z",
"average_rating": "2.9",
"app_store_url": "https://apps.shopify.com/zendesk",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Zendesk enables customer interactions across messaging, phone, chat, email, social media, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d315fe70bcb98753afbe6aed7a9bffcd/icon/CLHzxd_0lu8CEAE=.png",
"name": "Zendesk",
"token": "zendesk",
"platform": "shopify",
"vendor_name": "Zendesk",
"vendor_url": "https://apps.shopify.com/partners/zendesk_",
"vendor_email": "integrations_support@zendesk.com",
"vendor_website": "https://www.zendesk.com/",
"vendor_address": "1019 Market St, San Francisco, CA, 94103, US",
"id": "1.zendesk",
"created_at": "2013-03-11T00:00:00",
"plans": [
{
"name": "Suite Team",
"monthly_cost": "$55/month",
"monthly_cost_cents": 5500
},
{
"name": "Suite Growth",
"monthly_cost": "$89/month",
"monthly_cost_cents": 8900
},
{
"name": "Suite Professional",
"monthly_cost": "$115/month",
"monthly_cost_cents": 11500
},
{
"name": "Suite Enterprise",
"monthly_cost": "$150/month",
"monthly_cost_cents": 15000
}
],
"categories": [
"helpdesk"
],
"integrates_with": [
"mailchimp",
"trustpilot",
"loyaltylion",
"yotpo",
"shipstation",
"chargedesk"
],
"review_count": 161,
"installs": 15373,
"instp": 0.005353452163511347,
"installs_30d": -16,
"installs_90d": 69
}
],
"categories": [
"/Safety \u0026 Survival/Safety/Security Products"
],
"technologies": [
{
"installed_at": "2023-03-21T19:02:07Z",
"name": "Address Validator",
"description": "Say goodbye to invalid addresses and redelivery fees! Get started in seconds without coding.",
"vendor_url": "https://addressvalidator.com",
"icon_url": "https://storeleads.app/img/tech/addressvalidator.png",
"installs": 2754
},
{
"installed_at": "2023-08-04T15:51:24Z",
"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",
"categories": [
"Fulfillment"
],
"installs": 2682375
},
{
"installed_at": "2025-01-31T01:54:15Z",
"name": "Aspire",
"description": "The influencer marketing software platform for high-growth ecommerce brands.",
"vendor_url": "https://aspire.io",
"icon_url": "https://storeleads.app/img/tech/aspire.png",
"categories": [
"Referral Marketing"
],
"installs": 867
},
{
"installed_at": "2023-10-31T22:57:50Z",
"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",
"categories": [
"CDN"
],
"installs": 5214254
},
{
"installed_at": "2021-06-08T15:44:25Z",
"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",
"categories": [
"CDN"
],
"installs": 4379769
},
{
"installed_at": "2026-01-12T21:26:17Z",
"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",
"categories": [
"Marketing Automation"
],
"installs": 38766
},
{
"installed_at": "2020-04-03T07:51:53Z",
"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",
"categories": [
"Analytics"
],
"installs": 3224718
},
{
"installed_at": "2025-09-11T10:34:08Z",
"name": "Facebook SDK",
"description": "The Facebook SDK can be used to add Facebook-specific features to an online store. It is commonly used to show the number of Facebook \"likes\" that a business has and to add a button that allows a visitor to easily like the business on Facebook.",
"vendor_url": "https://developers.facebook.com/docs/javascript",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 336342
},
{
"installed_at": "2025-01-31T01:54:15Z",
"name": "Gobot",
"description": "Gobot helps leading companies combat rising ad costs and cookie deprecation by growing and monetizing First-Party owned audiences.",
"vendor_url": "https://www.getgobot.com/",
"icon_url": "https://storeleads.app/technologies/img/Gobot.png",
"categories": [
"Advertising"
],
"installs": 486
},
{
"installed_at": "2020-04-03T07:51:53Z",
"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",
"categories": [
"Analytics"
],
"installs": 4594637
},
{
"installed_at": "2022-03-09T08:16:45Z",
"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",
"categories": [
"Advertising"
],
"installs": 4557963
},
{
"installed_at": "2025-09-04T14:05:34Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1695319
},
{
"installed_at": "2026-04-30T16:05:49Z",
"name": "Impact",
"description": "Impact's Partnership Cloud lets you expand your program and scale every type of partnership, including affiliates, influencers, strategic business partners, mobile apps, publishers, and more.",
"vendor_url": "https://impact.com",
"icon_url": "https://storeleads.app/img/tech/impact.png",
"categories": [
"Affiliate Marketing"
],
"installs": 6426
},
{
"installed_at": "2023-04-27T03:58:24Z",
"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",
"categories": [
"Marketing Automation"
],
"installs": 540396
},
{
"installed_at": "2026-05-08T01:35:17Z",
"name": "Microsoft 365",
"description": "AI built into Microsoft 365 Copilot helps you create, collaborate, and work across documents, presentations, and data.",
"vendor_url": "https://www.office.com",
"icon_url": "https://storeleads.app/technologies/img/Microsoft365.png",
"categories": [
"Email"
],
"installs": 1031590
},
{
"installed_at": "2026-01-12T21:26:17Z",
"name": "Octane AI",
"description": "Octane AI enables merchants to increase revenue with a Facebook Messenger bot that customers love.",
"vendor_url": "https://octaneai.com/",
"icon_url": "https://storeleads.app/img/tech/octaneai.png",
"installs": 3754
},
{
"installed_at": "2026-03-17T03:27:25Z",
"name": "OneTrust Cookie Consent",
"description": "Cookie compliance and consent management made easier.",
"vendor_url": "https://www.onetrust.com/products/cookie-consent",
"icon_url": "https://storeleads.app/img/tech/onetrust.png",
"installs": 30541
},
{
"installed_at": "2026-03-25T06:34:58Z",
"name": "PostPilot",
"description": "Direct mail marketing reinvented for modern ecommerce.",
"vendor_url": "https://www.postpilot.com",
"icon_url": "https://storeleads.app/img/tech/postpilot.png",
"installs": 938
},
{
"installed_at": "2022-03-30T11:44:16Z",
"name": "ReCharge",
"description": "ReCharge is the leading platform to launch and scale your subscription business.",
"vendor_url": "https://rechargepayments.com",
"icon_url": "https://storeleads.app/img/tech/recharge.png",
"installs": 52402
},
{
"installed_at": "2021-06-05T02:33:31Z",
"name": "Sezzle",
"description": "Sezzles lets you buy from your favorite stores today, and split up the cost into four interest-free payments.",
"vendor_url": "https://sezzle.com",
"icon_url": "https://storeleads.app/img/tech/sezzle.png",
"installs": 38253
},
{
"installed_at": "2020-11-10T19:43:42Z",
"name": "SwellRewards",
"description": "Boost lifetime value and increase customer acquisition with Swell’s on-brand loyalty and referral solutions.",
"vendor_url": "https://www.swellrewards.com",
"icon_url": "https://storeleads.app/img/tech/swellrewards.png",
"installs": 12197
},
{
"installed_at": "2023-11-23T20:53:06Z",
"name": "Vimeo",
"description": "Vimeo provides simple tools for you and your team to create, manage and share high-quality videos.",
"vendor_url": "https://vimeo.com",
"icon_url": "https://storeleads.app/img/tech/vimeo.png",
"installs": 1256740
},
{
"installed_at": "2020-04-03T07:51:53Z",
"name": "Yotpo",
"description": "Yotpo accelerates growth with a full suite of solutions for customer reviews, visual marketing, loyalty programs, and referrals.",
"vendor_url": "https://www.yotpo.com",
"icon_url": "https://storeleads.app/img/tech/yotpo.png",
"installs": 48416
},
{
"installed_at": "2021-02-12T01:14:47Z",
"name": "YouTube Player",
"description": "The YouTube Player lets you embed YouTube videos in your website or application.",
"vendor_url": "https://www.youtube.com",
"icon_url": "https://storeleads.app/img/youtube.png",
"installs": 1999682
},
{
"installed_at": "2021-06-23T09:44:37Z",
"name": "Zendesk",
"description": "Zendesk customer service and engagement products are powerful and flexible, and scale to meet the needs of any business.",
"vendor_url": "https://www.zendesk.com",
"icon_url": "https://storeleads.app/img/tech/zendesk.png",
"installs": 185724
}
],
"cluster_domains": [
"byrna.com",
"byrna.ca",
"byrna.co.za",
"ir.byrna.com",
"le.byrna.com",
"international.byrna.com",
"academy.byrna.com"
],
"features": [
"FAQ Page",
"Recharge v2",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"Returns Page",
"Signature Required",
"Tracking Page",
"Wholesale/Retailers Page",
"Brand Advocate Page",
"Has Blog",
"Career Page",
"Public Company"
],
"ships_to_countries": [
"United States"
],
"rank_percentile": 0.0016,
"collection_count": 110,
"rank": 237,
"latitude": 42.6583356,
"platform_rank_percentile": 0.0003,
"longitude": -71.1367953,
"estimated_page_views": 8821975,
"estimated_sales": 1026688709,
"estimated_sales_yearly": 12320264508,
"estimated_visits": 2384317,
"product_images": 467,
"product_images_created_365": 90,
"product_images_created_90": 14,
"employee_count": 87,
"cc_rank": 4873,
"cc_centrality": 1012,
"product_count": 141,
"max_price": 89999,
"max_price_usd": 89999,
"max_weight": 7711,
"monthly_app_spend": 150599,
"min_price": 499,
"min_price_usd": 499,
"min_weight": 45,
"variant_count": 257,
"vendor_count": 2,
"avg_price": 13435,
"avg_price_usd": 13435,
"avg_weight": 695,
"platform_rank": 13
},
{
"theme": {
"name": "dna",
"style": "Unknown",
"vendor": "Unknown",
"version": "1.2.0"
},
"trustpilot": {
"review_count": 6,
"avg_rating": 2.5
},
"okendo": {
"review_count": 15814,
"avg_rating": 4.676046541039585
},
"plan": "Shopify Plus",
"cluster_best_ranked": "versedskin.com",
"city": "Westport",
"last_updated_at": "2026-07-14T00:00:00",
"subregion": "Northern America",
"contact_page": "https://versedskin.com/pages/contact-us",
"country_code": "US",
"currency_code": "USD",
"title": "Clean skincare and makeup essentials",
"store_locator_page": "https://versedskin.com/pages/store-locator",
"administrative_area_level_1": "Connecticut",
"state": "Active",
"icon": "https://versedskin.com/cdn/shop/files/favicon_-new.png?crop=center\u0026height=32\u0026v=1736437861\u0026width=32",
"brand_advocate_page": "https://ambassador.upfluence.co/versed-affiliate-program",
"brands_page": "https://versedskin.com/blogs/learn/female-founded-brands",
"faq_page": "https://versedskin.gorgias.help/en-US",
"region": "Americas",
"language_code": "en",
"about_us": "https://versedskin.com/pages/about",
"platform_domain": "versed-skin.myshopify.com",
"last_plan_change_at": "2025-08-28T00:00:00",
"platform": "shopify",
"location": "Westport, CT, USA",
"og_image": "https://versedskin.com/cdn/shop/files/Untitled_design_3cf0df74-5ef2-4a1d-8d6b-75bfca96318e.png?v=1719960705",
"max_product_published_at": "2026-06-03T00:00:00",
"merchant_name": "Versed Skin",
"avg_price_formatted": "$25.01",
"created_at": "2018-11-02T00:00:00",
"name": "versedskin.com",
"tld1": "versedskin.com",
"description": "Shop Versed Skin for skincare and makeup routine essentials, from moisturizers and cleansers, to mascara and concealer. Clean, dermatologist-tested, cruelty-free.",
"retailer_page": "https://versedskin.com/pages/authorized-seller-and-reseller-policy",
"contact_info": [
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/versed"
},
{
"description": "Versed | Solve Your Skin™\nClean | Vegan | Dermatologist-Tested | Sensitive Skin Friendly\nShop at @Target",
"followers": 7000,
"posts": 456,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/versedskincare"
},
{
"description": "Solve Your Skin™\nShop at @target @Ulta Beauty",
"followers": 274800,
"followers_30d": 845,
"followers_90d": 3259,
"likes": 2200000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@versed"
},
{
"source": "/pages/privacy-policy",
"type": "email",
"value": "hello@versedskin.com"
},
{
"source": "/pages/testparty",
"type": "phone",
"value": "(201) 212-4683"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/offspring-beauty-co"
}
],
"aliases": [
"www.versedskin.com"
],
"apps": [
{
"installed_at": "2023-12-27T10:52:33Z",
"average_rating": "4.5",
"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": "Standard",
"monthly_cost": "$5/month",
"monthly_cost_cents": 500
},
{
"name": "Premium",
"monthly_cost": "$25/month",
"monthly_cost_cents": 2500
},
{
"name": "Enterprise",
"monthly_cost": "$75/month",
"monthly_cost_cents": 7500
}
],
"categories": [
"accessibility"
],
"integrates_with": [
"Shopify Admin"
],
"review_count": 24,
"installs": 12542,
"instp": 0.004367592339475659,
"installs_30d": -48,
"installs_90d": -107
},
{
"installed_at": "2026-01-21T08:19:30Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/aspireiq-elevate",
"state": "Active",
"description": "Aspire is a leading influencer marketing platform powering high-growth e-commerce brands.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b26a1a2bc0869da6fcf49d741058de8e/icon/CNq9qob5o_cCEAE=.png",
"name": "Aspire",
"token": "aspireiq-elevate",
"platform": "shopify",
"vendor_name": "Aspire",
"vendor_url": "https://apps.shopify.com/partners/aspireiq",
"vendor_email": "app-support@aspireiq.com",
"vendor_website": "https://aspire.io/",
"vendor_address": "701 Tillery Street #12 #148, Austin, TX, 78702, US",
"id": "1.aspireiq-elevate",
"created_at": "2020-08-18T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
}
],
"categories": [
"ads",
"analytics"
],
"review_count": 12,
"installs": 663,
"instp": 0.00023088133639550008,
"installs_30d": 30,
"installs_90d": 69
},
{
"installed_at": "2024-05-01T03:38:59Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/attentive",
"state": "Active",
"description": "AI-powered mobile email and SMS marketing platform enabling personalization at scale.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5da194592c59cd145b825b53019db33c/icon/CIKipOGl7-8CEAE=.png",
"name": "Attentive: AI‑led Email \u0026SMS",
"token": "attentive",
"platform": "shopify",
"vendor_name": "Attentive",
"vendor_url": "https://apps.shopify.com/partners/attentive-mobile-inc",
"vendor_email": "integration-questions@attentivemobile.com",
"vendor_website": "https://www.attentive.com/",
"vendor_address": "156 5th Ave, Suite 303, New York, NY, 10010, US",
"id": "1.attentive",
"created_at": "2020-07-02T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Checkout\n\n \n \n Gorgias\n \n \n Loop Returns\n \n \n LoyaltyLion\n \n \n Okendo\n \n \n Rebuy\n \n \n Zendesk"
],
"review_count": 106,
"installs": 8925,
"instp": 0.003108017989939424,
"installs_30d": 46,
"installs_90d": -269,
"reviews_30d": 1,
"reviews_90d": 3
},
{
"installed_at": "2023-04-06T00:34:41Z",
"average_rating": "4.2",
"app_store_url": "https://apps.shopify.com/bazaarvoice-reviews-photos-social",
"state": "Active",
"description": "Be discovered. Be trusted. Be chosen.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/16e28f7698fddac56db2a803783cf974/icon/CN_DsfeR8voCEAE=.png",
"name": "Bazaarvoice Ratings \u0026 Reviews",
"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\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Facebook\n \n \n Google\n \n \n Instagram\n \n \n Pinterest\n \n \n TikTok"
],
"review_count": 14,
"installs": 4270,
"instp": 0.0014869733128337636,
"installs_30d": 44,
"installs_90d": 410,
"reviews_90d": 2
},
{
"removed_at": "2026-07-17T00:28:33.625037583Z",
"installed_at": "2026-02-15T22:03:48Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/checkout-upsells",
"state": "Inactive",
"free_trial_duration": "336h0m0s",
"description": "Supercharge checkout: Elevate AOV with tailored post-purchase offers \u0026 smart upsells.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/c7034f71df71729877f560e6c4ff2873/icon/COy4tI7t84ADEAE=.png",
"name": "CommerceChamp Upsells \u0026 Promos",
"token": "checkout-upsells",
"platform": "shopify",
"vendor_name": "Commerce Champion",
"vendor_url": "https://apps.shopify.com/partners/rnj",
"vendor_email": "hello@commercechamp.co",
"vendor_website": "https://www.commercechamp.co/",
"vendor_address": "8306 WILSHIRE BLVD, NUM 873, BEVERLY HILLS, CA, 90211, US",
"id": "1.checkout-upsells",
"created_at": "2023-09-11T00:00:00",
"plans": [
{
"name": "Silver",
"monthly_cost": "$7.99/month",
"monthly_cost_cents": 799
},
{
"name": "Gold",
"monthly_cost": "$49.99/month",
"monthly_cost_cents": 4999
},
{
"name": "Platinum",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"upsell and cross-sell"
],
"integrates_with": [
"Checkout"
],
"review_count": 4,
"installs": 31,
"instp": 0.000010795356603711166,
"installs_30d": 1,
"installs_90d": 3
},
{
"installed_at": "2026-04-30T16:11:17Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/dataships",
"state": "Active",
"free_trial_duration": "120h0m0s",
"description": "Get more email and SMS opt-ins at checkout. Watch your revenue grow.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2bf4b3b68541abd375755a6305557e71/icon/CNybxdnQvIQDEAE=.png",
"name": "Dataships Checkout Opt‑in",
"token": "dataships",
"platform": "shopify",
"vendor_name": "Dataships Limited",
"vendor_url": "https://apps.shopify.com/partners/dataships3",
"vendor_email": "support@dataships.io",
"vendor_website": "https://dataships.io/",
"vendor_address": "University College Dublin, Belfield Innovation Park, Dublin, D, D04 V2P1, IE",
"id": "1.dataships",
"created_at": "2023-01-04T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Plus",
"monthly_cost": "$1,500/month",
"monthly_cost_cents": 150000
},
{
"name": "Pro",
"monthly_cost": "$3,000/month",
"monthly_cost_cents": 300000
},
{
"name": "Custom",
"monthly_cost": "$3,500/month",
"monthly_cost_cents": 350000
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Checkout\n\n \n \n Klaviyo"
],
"review_count": 75,
"installs": 584,
"instp": 0.00020337058892152643,
"installs_30d": 18,
"installs_90d": 91,
"reviews_30d": 5,
"reviews_90d": 9
},
{
"installed_at": "2026-01-21T08:19:30Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/edgetag",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Drive more sales in the post-cookie era by restoring customer identity.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2d271308bcb2be468da3ebf694b73e07/icon/CNTqnJmhrPgCEAE=.png",
"name": "Blotout EdgeTag",
"token": "edgetag",
"platform": "shopify",
"vendor_name": "Blotout",
"vendor_url": "https://apps.shopify.com/partners/blotout",
"vendor_email": "merchants@blotout.io",
"vendor_website": "https://blotout.io",
"vendor_address": "44401 Chantecler Ct, Fremont, CA, 94539, US",
"id": "1.edgetag",
"created_at": "2022-06-24T00:00:00",
"plans": [
{
"name": "Basic Plan",
"monthly_cost": "$49.99/month",
"monthly_cost_cents": 4999
},
{
"name": "Maintenance plan",
"monthly_cost": "$249.99/month",
"monthly_cost_cents": 24999
}
],
"categories": [
"analytics",
"ads"
],
"integrates_with": [
"Checkout\n\n \n \n Google Ads\n \n \n Google Analytics 4\n \n \n Klaviyo\n \n \n Meta\n \n \n Snapchat\n \n \n TikTok"
],
"review_count": 25,
"installs": 1989,
"instp": 0.0006926440091865003,
"installs_30d": -10,
"installs_90d": -28,
"reviews_30d": 1,
"reviews_90d": 1
},
{
"installed_at": "2025-01-09T17:27:23Z",
"average_rating": "3.9",
"app_store_url": "https://apps.shopify.com/influencer-marketing-for-shopify-by-grin",
"state": "Active",
"free_trial_duration": "23880h0m0s",
"description": "GRIN helps brands make the most of their influencer marketing program and creator relationships.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/587aad73baed2981f8434ea77c94249c/icon/CKrkovmZkPwCEAE=.png",
"name": "GRIN Influencer Marketing",
"token": "influencer-marketing-for-shopify-by-grin",
"platform": "shopify",
"vendor_name": "Grin, Inc.",
"vendor_url": "https://apps.shopify.com/partners/grin-inc1",
"vendor_email": "support@grin.co",
"vendor_website": "https://www.grin.co/",
"vendor_address": "400 Capitol Mall, 8th Floor, Sacramento, CA, 95814, US",
"id": "1.influencer-marketing-for-shopify-by-grin",
"created_at": "2021-09-23T00:00:00",
"plans": [
{
"name": "Free to install.",
"monthly_cost": "Free to install"
}
],
"categories": [
"affiliate programs"
],
"integrates_with": [
"Checkout\n\n \n \n DocuSign\n \n \n Gmail\n \n \n Instagram\n \n \n Klaviyo\n \n \n Outlook\n \n \n TikTok"
],
"review_count": 32,
"installs": 1383,
"instp": 0.0004816121994494368,
"installs_30d": -31,
"installs_90d": -42
},
{
"installed_at": "2019-12-08T13:19:33Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "AI marketing and customer service automation for email marketing, SMS, and WhatsApp to grow faster.",
"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://developers.klaviyo.com/en",
"vendor_address": "125 Summer St, Floor 7, Boston, MA, 02111, 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": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Aftership\n \n \n Gorgias\n \n \n Meta Advertising\n \n \n Recharge\n \n \n TikTok Advertising\n \n \n Typeform"
],
"review_count": 2975,
"installs": 413938,
"instp": 0.1441486555428062,
"installs_30d": 3367,
"installs_90d": 15900,
"reviews_30d": 115,
"reviews_90d": 403
},
{
"installed_at": "2024-12-20T22:43:55Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/octane-ai-quiz-personalization",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost Sales with AI Quizzes \u0026 Funnels That Guide Shoppers, Personalize Products, \u0026 Drive Conversions",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/660d02b21dc203afa3147b8a84d27cf3/icon/CPi6_-Sg3pADEAE=.png",
"name": "Octane AI: Advanced Quiz Maker",
"token": "octane-ai-quiz-personalization",
"platform": "shopify",
"vendor_name": "Octane AI",
"vendor_url": "https://apps.shopify.com/partners/octane-ai",
"vendor_email": "human@octaneai.com",
"vendor_website": "https://www.octaneai.com",
"vendor_address": "PO Box 7775 #94590, San Francisco, CA, 94120, US",
"id": "1.octane-ai-quiz-personalization",
"created_at": "2018-03-23T00:00:00",
"plans": [
{
"name": "Octane Basic",
"monthly_cost": "$50/month",
"monthly_cost_cents": 5000
},
{
"name": "Octane Plus",
"monthly_cost": "$200/month",
"monthly_cost_cents": 20000
},
{
"name": "Octane Enterprise",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Octane Unlimited",
"monthly_cost": "$2,000/month",
"monthly_cost_cents": 200000
}
],
"categories": [
"pop-ups",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n attentive\n \n \n Gorgias\n \n \n klaviyo\n \n \n postscript\n \n \n recharge\n \n \n Tapcart"
],
"review_count": 191,
"installs": 3746,
"instp": 0.0013044969625000654,
"installs_30d": -52,
"installs_90d": 78,
"reviews_30d": 3,
"reviews_90d": 2
},
{
"installed_at": "2023-12-20T17:51:23Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/okendo-reviews",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Grow faster with AI-enabled community marketing apps from Okendo.",
"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
},
{
"name": "Power",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
}
],
"categories": [
"product reviews",
"loyalty and rewards"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n Shopify Admin\n \n \n Google\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Meta\n \n \n Postscript\n \n \n TikTok"
],
"review_count": 1365,
"installs": 19318,
"instp": 0.006727248350661042,
"installs_30d": 79,
"installs_90d": 803,
"reviews_30d": 9,
"reviews_90d": 44
},
{
"installed_at": "2022-08-18T22:50:00Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/order-limits-minmaxify",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Control Order Quantities with Minimum and Maximum Limits on Your Cart, Products, and Collections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a04c143bd308483d7a0f055ee1be9d64/icon/CLjmhfDv2vACEAE=.png",
"name": "Minmaxify Order Limits",
"token": "order-limits-minmaxify",
"platform": "shopify",
"vendor_name": "Intillium",
"vendor_url": "https://apps.shopify.com/partners/bitstim",
"vendor_email": "support@minmaxify.com",
"vendor_website": "http://www.minmaxify.com",
"vendor_address": "5 Kingsgate Place, Caledon, ON, L7E5Z5, CA",
"id": "1.order-limits-minmaxify",
"created_at": "2012-10-29T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Premium",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
},
{
"name": "Plus",
"monthly_cost": "$50/month",
"monthly_cost_cents": 5000
}
],
"categories": [
"order limits"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin"
],
"review_count": 174,
"installs": 13576,
"instp": 0.004727669717805896,
"installs_30d": -177,
"installs_90d": -492,
"reviews_90d": 3
},
{
"installed_at": "2022-06-16T22:32:48Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/product-filter-search",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Increase sales with AI Search, advanced filters, and smarter product discovery",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d4172f8181a20b56ade67cc448fac594/icon/CMKjgqn00YwDEAE=.png",
"name": "Boost AI Search \u0026 Filter",
"token": "product-filter-search",
"platform": "shopify",
"vendor_name": "Boost Commerce",
"vendor_url": "https://apps.shopify.com/partners/boostcommerce",
"vendor_email": "support@boostcommerce.net",
"vendor_website": "https://boostcommerce.net",
"vendor_address": "Level 46, Bitexco Financial Tower, 2 Hai Trieu Street, Ben Nghe Ward, District 1, Ho Chi Minh, 700000, VN",
"id": "1.product-filter-search",
"created_at": "2017-01-17T00:00:00",
"plans": [
{
"name": "Launch, from",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "Convert, from",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
},
{
"name": "Accelerate, from",
"monthly_cost": "$699/month",
"monthly_cost_cents": 69900
}
],
"categories": [
"search and filters",
"navigation and menus"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Admin\n \n \n App builder: Shopney \u0026 Vajro\n \n \n Klaviyo\n \n \n Product label apps\n \n \n Reviews.io\n \n \n Weglot \u0026 langify\n \n \n Yotpo",
"Judge.me",
"Growave",
"Loox"
],
"review_count": 1565,
"installs": 21005,
"instp": 0.007314724692288807,
"installs_30d": -483,
"installs_90d": -2120,
"reviews_30d": 8,
"reviews_90d": 15
},
{
"installed_at": "2025-05-13T10:33:54Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/stockist-store-locator",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Easily create a powerful, customizable, mobile-friendly store \u0026 dealer locator map.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/990414e1ce95a0f458270b7c80f18531/icon/CIzky6z0lu8CEAE=.png",
"name": "Stockist Store Locator",
"token": "stockist-store-locator",
"platform": "shopify",
"vendor_name": "Stockist",
"vendor_url": "https://apps.shopify.com/partners/stockist",
"vendor_email": "help@stockist.co",
"vendor_website": "https://stockist.co",
"vendor_address": "1037 NE 65th St #81438, Seattle, WA, 98115, US",
"id": "1.stockist-store-locator",
"created_at": "2016-06-17T00:00:00",
"plans": [
{
"name": "Basic",
"monthly_cost": "$10/month",
"monthly_cost_cents": 1000
},
{
"name": "Plus",
"monthly_cost": "$20/month",
"monthly_cost_cents": 2000
},
{
"name": "Premium",
"monthly_cost": "$40/month",
"monthly_cost_cents": 4000
}
],
"categories": [
"store locator"
],
"integrates_with": [
"Google Maps\n \n \n Google Sheets\n \n \n Mapbox"
],
"review_count": 322,
"installs": 13420,
"instp": 0.004673344697477543,
"installs_30d": 55,
"installs_90d": 272,
"reviews_30d": 5,
"reviews_90d": 19
},
{
"installed_at": "2019-11-15T05:57:24Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/subscription-payments",
"state": "Active",
"free_trial_duration": "1440h0m0s",
"description": "The subscription platform built for the world’s fastest-growing brands.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0009de8c024a6126315f5dcd4250fd61/icon/CK6otpbp4PwCEAE=.jpeg",
"name": "Recharge Subscriptions App",
"token": "subscription-payments",
"platform": "shopify",
"vendor_name": "Recharge",
"vendor_url": "https://apps.shopify.com/partners/recharge",
"vendor_email": "support@rechargeapps.com",
"vendor_website": "https://rechargepayments.com/developers/",
"vendor_address": "1507 20th St, Santa Monica, CA, 90404, US",
"id": "1.subscription-payments",
"created_at": "2014-10-14T00:00:00",
"plans": [
{
"name": "25-50",
"monthly_cost": "$25/month",
"monthly_cost_cents": 2500
},
{
"name": "Starter",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Plus",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"subscriptions",
"product bundles"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify POS\n\n \n \n Shopify Flow\n \n \n Attentive\n \n \n Avalara\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Stripe\n \n \n Triple Whale"
],
"review_count": 2460,
"installs": 51787,
"instp": 0.0180341655624642,
"installs_30d": 888,
"installs_90d": -2341,
"reviews_30d": 21,
"reviews_90d": 82
},
{
"installed_at": "2024-12-20T22:43:55Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/tolstoy",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Create shoppable videos, UGC reels, AI ads \u0026 Shop App content for storefront, TikTok Shop, and Meta.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/8bd7122773fa7246870cdd8376857423/icon/CMO26ZC3qIMDEAE=.png",
"name": "Tolstoy: Shoppable Video \u0026 UGC",
"token": "tolstoy",
"platform": "shopify",
"vendor_name": "Tolstoy",
"vendor_url": "https://apps.shopify.com/partners/tolstoy",
"vendor_email": "support@gotolstoy.com",
"vendor_website": "https://www.gotolstoy.com",
"vendor_address": "Tel Aviv, Tel Aviv, 123456, IL",
"id": "1.tolstoy",
"created_at": "2020-12-02T00:00:00",
"plans": [
{
"name": "Tolstoy Free",
"monthly_cost": "Free"
},
{
"name": "Shoppable Plus",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Bundle Plus",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Bundle Pro",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"video and livestream",
"social proof"
],
"integrates_with": [
"Checkout\n\n \n \n Meta Ads",
"Klaviyo\n \n \n Shop App",
"TikTok Shop\n \n \n Shoppable videos",
"AI ads\n \n \n TikTok",
"Instagram Reels\n \n \n UGC",
"Product videos\n \n \n Yotpo",
"Okendo",
"Loox"
],
"review_count": 260,
"installs": 10028,
"instp": 0.0034921237426456635,
"installs_30d": -235,
"installs_90d": 303,
"reviews_30d": 13,
"reviews_90d": 27
},
{
"installed_at": "2019-10-24T07:17:00Z",
"average_rating": "2.9",
"app_store_url": "https://apps.shopify.com/zendesk",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Zendesk enables customer interactions across messaging, phone, chat, email, social media, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d315fe70bcb98753afbe6aed7a9bffcd/icon/CLHzxd_0lu8CEAE=.png",
"name": "Zendesk",
"token": "zendesk",
"platform": "shopify",
"vendor_name": "Zendesk",
"vendor_url": "https://apps.shopify.com/partners/zendesk_",
"vendor_email": "integrations_support@zendesk.com",
"vendor_website": "https://www.zendesk.com/",
"vendor_address": "1019 Market St, San Francisco, CA, 94103, US",
"id": "1.zendesk",
"created_at": "2013-03-11T00:00:00",
"plans": [
{
"name": "Suite Team",
"monthly_cost": "$55/month",
"monthly_cost_cents": 5500
},
{
"name": "Suite Growth",
"monthly_cost": "$89/month",
"monthly_cost_cents": 8900
},
{
"name": "Suite Professional",
"monthly_cost": "$115/month",
"monthly_cost_cents": 11500
},
{
"name": "Suite Enterprise",
"monthly_cost": "$150/month",
"monthly_cost_cents": 15000
}
],
"categories": [
"helpdesk"
],
"integrates_with": [
"mailchimp",
"trustpilot",
"loyaltylion",
"yotpo",
"shipstation",
"chargedesk"
],
"review_count": 161,
"installs": 15373,
"instp": 0.005353452163511347,
"installs_30d": -16,
"installs_90d": 69
}
],
"categories": [
"/Beauty \u0026 Fitness/Face \u0026 Body Care/Skin \u0026 Nail Care"
],
"technologies": [
{
"installed_at": "2020-02-28T14:53:36Z",
"name": "Afterpay",
"description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
"vendor_url": "https://www.afterpay.com/",
"icon_url": "https://storeleads.app/img/tech/afterpay.png",
"categories": [
"Payment Processor",
"Financing"
],
"installs": 538275
},
{
"installed_at": "2020-11-10T19:44:04Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1881575
},
{
"installed_at": "2024-02-16T01:45:08Z",
"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",
"categories": [
"Fulfillment"
],
"installs": 2682375
},
{
"installed_at": "2026-01-21T08:19:30Z",
"name": "Aspire",
"description": "The influencer marketing software platform for high-growth ecommerce brands.",
"vendor_url": "https://aspire.io",
"icon_url": "https://storeleads.app/img/tech/aspire.png",
"categories": [
"Referral Marketing"
],
"installs": 867
},
{
"installed_at": "2020-10-02T22:28:40Z",
"name": "Attentive",
"description": "The most comprehensive text message marketing solution, driving an average of 18.5% of total online revenue for our customers.",
"vendor_url": "https://www.attentivemobile.com",
"icon_url": "https://storeleads.app/img/tech/attentive.png",
"categories": [
"SMS"
],
"installs": 12788
},
{
"installed_at": "2026-01-12T21:53:10Z",
"name": "Bazaarvoice",
"description": "Connect shoppers with authentic content they trust.",
"vendor_url": "https://www.bazaarvoice.com",
"icon_url": "https://storeleads.app/img/tech/bazaarvoice.png",
"categories": [
"Content Curation"
],
"installs": 9478
},
{
"installed_at": "2026-01-21T08:19:30Z",
"name": "Blotout",
"description": "Restore your marketing signals in the post-cookie world.",
"vendor_url": "https://blotout.io",
"icon_url": "https://storeleads.app/img/tech/blotout.png",
"categories": [
"Advertising"
],
"installs": 2106
},
{
"installed_at": "2023-10-31T22:58:06Z",
"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",
"categories": [
"CDN"
],
"installs": 5214254
},
{
"installed_at": "2021-06-08T15:44:30Z",
"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",
"categories": [
"CDN"
],
"installs": 4379769
},
{
"installed_at": "2022-08-01T11:58:37Z",
"name": "GRIN",
"description": "GRIN is the all-in-one creator management platform helping ecommerce companies build more valuable brands through the power of creator partnerships.",
"vendor_url": "https://grin.co",
"icon_url": "https://storeleads.app/img/tech/grin.png",
"categories": [
"Referral Marketing"
],
"installs": 2078
},
{
"installed_at": "2020-08-05T01:50:11Z",
"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",
"categories": [
"Analytics"
],
"installs": 4594637
},
{
"installed_at": "2022-02-04T00:13:57Z",
"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",
"categories": [
"Advertising"
],
"installs": 4557963
},
{
"installed_at": "2020-01-18T02:49:53Z",
"name": "Google Analytics",
"description": "Google Analytics gives you the tools you need to better understand your customers. You can then use those business insights to take action, such as improving your website, creating tailored audience lists, and more.",
"vendor_url": "https://analytics.google.com",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"categories": [
"Analytics"
],
"installs": 2782328
},
{
"installed_at": "2022-09-09T12:02:57Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1695319
},
{
"installed_at": "2020-01-18T02:49:53Z",
"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",
"categories": [
"Tag Manager"
],
"installs": 4321346
},
{
"installed_at": "2026-05-08T02:18:01Z",
"name": "Google Workspace",
"description": "Join millions of businesses that run on premium versions of Gmail, Calendar, Drive, Meet, and more. Focus on getting results instead of looking for information with helpful, personalized AI.",
"vendor_url": "https://workspace.google.com/",
"icon_url": "https://storeleads.app/technologies/img/GoogleWorkspace.png",
"categories": [
"Email"
],
"installs": 2260288
},
{
"installed_at": "2022-04-12T21:12:44Z",
"name": "Hotjar",
"description": "Hotjar lets you see how visitors are really using your website, collect user feedback and turn more visitors into customers.",
"vendor_url": "https://www.hotjar.com",
"icon_url": "https://storeleads.app/img/tech/hotjar.png",
"categories": [
"Analytics"
],
"installs": 261661
},
{
"installed_at": "2020-01-18T02:49:53Z",
"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",
"categories": [
"Marketing Automation"
],
"installs": 540396
},
{
"installed_at": "2024-12-20T22:43:55Z",
"name": "Octane AI",
"description": "Octane AI enables merchants to increase revenue with a Facebook Messenger bot that customers love.",
"vendor_url": "https://octaneai.com/",
"icon_url": "https://storeleads.app/img/tech/octaneai.png",
"installs": 3754
},
{
"installed_at": "2023-12-20T17:51:23Z",
"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": 19468
},
{
"installed_at": "2024-07-16T22:17:13Z",
"name": "Osano",
"description": "The Osano data privacy management platform supports, streamlines, and automates compliance in your organization—without the stress.",
"vendor_url": "https://www.osano.com/",
"icon_url": "https://storeleads.app/technologies/img/Osano.png",
"categories": [
"Compliance"
],
"installs": 46766
},
{
"installed_at": "2020-11-07T01:30:55Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1553706
},
{
"installed_at": "2020-10-02T22:28:40Z",
"name": "Pepperjam",
"description": "Pepperjam's affiliate marketing tools help power growth for marketers seeking a scaled alternative to their primary sales and marketing channels.",
"vendor_url": "https://www.pepperjam.com",
"icon_url": "https://storeleads.app/img/tech/pepperjam.png",
"categories": [
"Affiliate Marketing"
],
"installs": 906
},
{
"installed_at": "2022-07-25T03:57:10Z",
"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",
"categories": [
"Analytics"
],
"installs": 473271
},
{
"installed_at": "2020-07-25T17:01:04Z",
"name": "ReCharge",
"description": "ReCharge is the leading platform to launch and scale your subscription business.",
"vendor_url": "https://rechargepayments.com",
"icon_url": "https://storeleads.app/img/tech/recharge.png",
"installs": 52402
},
{
"installed_at": "2021-01-07T21:36:58Z",
"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",
"categories": [
"Payment Processor"
],
"installs": 1561248
},
{
"installed_at": "2021-09-11T06:37:55Z",
"name": "Snap Pixel",
"description": "The Snap Pixel is a piece of JavaScript code that helps Advertisers measure the cross-device impact of Campaigns. Advertisers will be able to see how many Snapchatters take action on their website(s) after seeing their Ad.",
"vendor_url": "https://businesshelp.snapchat.com/en-US/article/snap-pixel-about",
"icon_url": "https://storeleads.app/img/snapchat.png",
"categories": [
"Analytics"
],
"installs": 108721
},
{
"installed_at": "2020-10-02T22:28:40Z",
"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",
"categories": [
"Analytics"
],
"installs": 655759
},
{
"installed_at": "2025-05-27T01:54:12Z",
"name": "Uptick",
"description": "Uptick unlocks a new stream of income by presenting tailored, valuable offers on your order confirmation page",
"vendor_url": "https://www.uptick.com/",
"icon_url": "https://storeleads.app/technologies/img/Uptick.png",
"installs": 641
},
{
"installed_at": "2020-01-18T02:49:53Z",
"name": "Zendesk",
"description": "Zendesk customer service and engagement products are powerful and flexible, and scale to meet the needs of any business.",
"vendor_url": "https://www.zendesk.com",
"icon_url": "https://storeleads.app/img/tech/zendesk.png",
"installs": 185724
},
{
"installed_at": "2021-06-03T19:25:35Z",
"name": "accessiBe",
"description": "The #1 Automated Web Accessibility Solution for ADA \u0026 WCAG Compliance",
"vendor_url": "https://accessibe.com",
"icon_url": "https://storeleads.app/img/tech/accessibe.png",
"categories": [
"Accessibility"
],
"installs": 18056
},
{
"installed_at": "2023-10-31T22:58:06Z",
"name": "reCAPTCHA",
"description": "reCAPTCHA is a free service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease.",
"vendor_url": "https://www.google.com/recaptcha/intro/v3.html",
"icon_url": "https://storeleads.app/img/tech/recaptcha.png",
"installs": 2208023
},
{
"installed_at": "2025-04-29T02:40:48Z",
"name": "shop my",
"description": "Enable your audience to shop your product recommendations while building meaningful partnerships with world-class brands.",
"vendor_url": "https://shopmy.us/home",
"icon_url": "https://storeleads.app/technologies/img/shopmy.png",
"categories": [
"Affiliate Marketing"
],
"installs": 3571
}
],
"cluster_domains": [
"versedskin.com"
],
"features": [
"Contact Page",
"FAQ Page",
"Shopify Online Store 2.0",
"Product Page Video Tag",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Wholesale/Retailers Page",
"Store Locator Page"
],
"ships_to_countries": [
"Canada",
"United Kingdom",
"United States"
],
"rank_percentile": 0.0024,
"collection_count": 225,
"rank": 344,
"latitude": 41.1414717,
"platform_rank_percentile": 0.0015,
"longitude": -73.3579049,
"estimated_page_views": 1535310,
"estimated_sales": 178677230,
"estimated_sales_yearly": 2144126760,
"estimated_visits": 414948,
"product_images": 469,
"product_images_created_365": 257,
"product_images_created_90": 10,
"employee_count": 60,
"cc_rank": 177735,
"cc_centrality": 153839,
"product_count": 67,
"max_price": 5899,
"max_price_usd": 5899,
"max_weight": 522,
"monthly_app_spend": 74198,
"min_price": 699,
"min_price_usd": 699,
"min_weight": 9,
"variant_count": 66,
"vendor_count": 1,
"avg_price": 2501,
"avg_price_usd": 2501,
"avg_weight": 144,
"platform_rank": 58
}
],
"has_next_page": true,
"next_cursor": "5b22205c7530303031403a605c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c2233393533313331225d",
"total": 12889
}
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": 215
},
{
"state": "Active",
"name": "uk.gymshark.com",
"rank": 12040307
},
{
"state": "Active",
"name": "ca.gymshark.com",
"rank": 12040558
},
{
"state": "Active",
"name": "row.gymshark.com",
"rank": 12040572
},
{
"state": "Active",
"name": "de.gymshark.com",
"rank": 12040576
}
]
}
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": 215
},
{
"state": "Active",
"language_code": "en",
"name": "uk.gymshark.com",
"rank": 12040307
},
{
"state": "Active",
"language_code": "en",
"name": "ca.gymshark.com",
"rank": 12040558
},
{
"state": "Active",
"language_code": "en",
"name": "row.gymshark.com",
"rank": 12040572
},
{
"state": "Active",
"language_code": "de",
"name": "de.gymshark.com",
"rank": 12040576
},
{
"state": "Active",
"language_code": "en",
"name": "eu.gymshark.com",
"rank": 12040586
},
{
"state": "Active",
"language_code": "fr",
"name": "fr.gymshark.com",
"rank": 12040742
},
{
"state": "Active",
"language_code": "nl",
"name": "nl.gymshark.com",
"rank": 12040777
},
{
"state": "Active",
"language_code": "en",
"name": "au.gymshark.com",
"rank": 12040887
},
{
"state": "Active",
"language_code": "en",
"name": "dk.gymshark.com",
"rank": 12042571
},
{
"state": "Active",
"language_code": "en",
"name": "no.gymshark.com",
"rank": 12044092
},
{
"state": "Active",
"language_code": "en",
"name": "se.gymshark.com",
"rank": 12044888
},
{
"state": "Active",
"language_code": "en",
"name": "fi.gymshark.com",
"rank": 12046169
},
{
"state": "Active",
"language_code": "de",
"name": "ch.gymshark.com",
"rank": 12046352
},
{
"state": "Active",
"language_code": "en",
"name": "ie.gymshark.com",
"rank": 12051919
},
{
"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",
"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",
"20241124090328",
"20241201005147",
"20241208164409",
"20241215030452",
"20241222040501",
"20241229095008",
"20250104225005",
"20250112024149",
"20250119013703",
"20250126014103",
"20250202165952",
"20250209235656",
"20250216033046",
"20250223004157",
"20250302043832",
"20250309060916",
"20250316013317",
"20250323002812",
"20250330004354",
"20250406020907",
"20250413004054",
"20250420033809",
"20250427024322",
"20250504033615",
"20250511071837",
"20250518040952",
"20250524225609",
"20250601001302",
"20250607220342",
"20250615044437",
"20250622001634",
"20250629021026",
"20250706125316",
"20250713020637",
"20250720033306",
"20250727035259",
"20250802184833",
"20250810194010",
"20250817043619",
"20250824120754",
"20250831051537",
"20250907090400",
"20250914065811",
"20250921042307",
"20250928064536",
"20251005051604",
"20251012023032",
"20251019034843",
"20251026021638",
"20251102081952",
"20251109074229",
"20251116041548",
"20251123104120",
"20251130052038",
"20251207091930",
"20251214063650",
"20251221045145",
"20251228100014",
"20260104122317",
"20260111031957",
"20260118032309",
"20260125123525",
"20260201111413",
"20260208175629",
"20260215105516",
"20260222180850",
"20260301085754",
"20260308091204",
"20260315140013",
"20260322205539",
"20260329104319",
"20260405172312",
"20260412123054",
"20260419150746",
"20260426090649",
"20260503150302",
"20260510120055",
"20260517103659",
"20260524121834",
"20260531102520",
"20260607125607",
"20260614134008",
"20260621102628",
"20260628101934",
"20260705114041",
"20260712111117",
"20260719114248"
]
}
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": "Where customer obsession meets invention. Use @AmazonHelp for customer support and @AmazonNews for the latest.",
"followers": 5900000,
"following": 91,
"posts": 45830,
"type": "twitter",
"value": "https://twitter.com/amazon"
},
"domain_names": [
"www.amazon.com",
"www.amazon.fr",
"www.amazon.com.br",
"www.amazon.ca",
"www.amazon.es",
"amazon-ye.com",
"amazon-basics.club",
"www.amazon-ye.com"
]
}
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": 1544770
}
}
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 Technologies 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": "Barn2Door",
"description": "Barn2Door powers local Farms online — your brand, your products, your customers.",
"vendor_url": "https://www.barn2door.com",
"icon_url": "https://storeleads.app/img/tech/barn2door.png",
"installs": 118
},
{
"name": "ChowNow",
"description": "Good for diners. Good for restaurants.",
"vendor_url": "https://get.chownow.com",
"icon_url": "https://storeleads.app/img/tech/chownow.png",
"installs": 1759
}
]
}
Themes
Theme objects represent a theme that a store can install on their website. Themes are only supported for Shopify stores.
The attributes of the Theme object are documented below.
The time at which the Technology was installed by a Domain.
List Themes
Returns a list of Themes. By default, 50 Themes 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 Themes 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 Themes based on a text query.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/theme?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/theme'
Example Response
{
"themes": [
{
"created_at": "2026-06-05T04:00:35Z",
"cost": "$270.00",
"name": "Gravity",
"vendor_name": "Theme Studio",
"vendor_url": "https://themes.shopify.com/designers/themeshopy-private-limited",
"theme_store_url": "https://themes.shopify.com/themes/gravity",
"description": "Refined Shopify theme for clothing brands with large catalogs.",
"platform": "shopify",
"status": "Active",
"styles": [
{
"demo_url": "https://opulencedevelopment.myshopify.com/",
"name": "Gravity"
},
{
"demo_url": "https://opulence-home-demo-3.myshopify.com/",
"name": "Decor"
},
{
"demo_url": "https://jewelry-demo-1235.myshopify.com/",
"name": "Gold"
},
{
"demo_url": "https://opulence-garden-demo.myshopify.com/",
"name": "Everbloom"
},
{
"demo_url": "https://kids-demo-8436.myshopify.com/",
"name": "Mario"
}
],
"id": 4920,
"installs": 15
},
{
"created_at": "2021-05-06T11:00:24Z",
"cost": "$280.00",
"name": "Highlight",
"vendor_name": "Krown Themes",
"vendor_url": "https://shopify.com",
"theme_store_url": "https://themes.shopify.com/themes/highlight",
"description": "Showcase noteworthy products in a creative and engaging way",
"platform": "shopify",
"status": "Active",
"styles": [
{
"demo_url": "https://highlight-theme-single.myshopify.com",
"name": "single"
},
{
"demo_url": "https://highlight-theme-art.myshopify.com",
"name": "art"
},
{
"demo_url": "https://highlight-theme.myshopify.com",
"name": "modern"
},
{
"demo_url": "https://highlight-theme-main.myshopify.com",
"name": "highlight"
},
{
"demo_url": "https://highlight-theme-brush.myshopify.com",
"name": "brush"
},
{
"demo_url": "https://highlight-theme-main.myshopify.com/",
"name": "Highlight"
},
{
"demo_url": "https://highlight-theme-brush.myshopify.com/",
"name": "Brush"
},
{
"demo_url": "https://highlight-theme-single.myshopify.com/",
"name": "Single"
}
],
"id": 903,
"installs": 968
}
]
}
Tools
MCP Server
Connect your AI assistant to Store Leads data using the Model Context Protocol (MCP). The Store Leads MCP server provides AI assistants with direct access to domain, app, and technology data. Learn more in our MCP documentation.
You'll need a Store Leads API key, which you can find on your Account page.
Claude Code (CLI)
claude mcp add -t http storeleads https://storeleads.app/mcp -H "Authorization: Bearer your.api.key"
Claude Desktop / Cursor
Add the following to your MCP settings:
{
"mcpServers": {
"storeleads": {
"type": "streamable-http",
"url": "https://storeleads.app/mcp",
"headers": {
"Authorization": "Bearer your.api.key"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
| search_domains | Search and filter e-commerce store domains |
| get_domain | Look up a single domain by name |
| bulk_get_domains | Fetch up to 100 domains in a single request |
| company_to_domain | Map a company name to its e-commerce domain |
| detect_domain | Detect what e-commerce platform a domain is using |
| search_apps | Search e-commerce apps by category, vendor, and more |
| get_app | Look up a single app by its token |
| get_app_reviews | Get reviews for a specific app |
| search_technologies | Search technologies used by e-commerce stores |
| get_technology | Look up a single technology by name |
| get_products_for_domain | Get products listed on a store domain |
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.
Store Leads