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": "3.8",
"app_store_url": "https://apps.shopify.com/marsello",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Everything you need to engage and retain your customers. Loyalty program, email, SMS, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CMevhZDaj4cDEAE=.png",
"name": "Marsello: Loyalty, Email, SMS",
"token": "marsello",
"platform": "shopify",
"vendor_name": "Marsello",
"vendor_url": "https://apps.shopify.com/partners/recovermycart",
"vendor_email": "help@marsello.com",
"vendor_website": "https://www.marsello.com/",
"vendor_address": "4 Bond Street, Level 4, Wellington, WGN, 6011, NZ",
"id": "1.marsello",
"created_at": "2017-05-29T00:00:00",
"plans": [
{
"name": "Essential",
"monthly_cost": "$125/month",
"monthly_cost_cents": 12500
},
{
"name": "Professional",
"monthly_cost": "$135/month",
"monthly_cost_cents": 13500
}
],
"categories": [
"loyalty and rewards",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Shopify Flow\n \n \n Cin7\n \n \n Heartland Retail\n \n \n Klaviyo\n \n \n Lightspeed Retail\n \n \n Lightspeed Hospitality\n \n \n Meta"
],
"review_count": 173,
"installs": 2468,
"instp": 0.0009537242778475508,
"installs_30d": -33,
"installs_90d": -146,
"reviews_90d": -214
}
}
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 Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Prefix fields with a minus sign (-) to denote descending sort order. Default: -updated_at
Valid fields are:
- updated_at
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello/reviews?page_size=2'
Example Response
{
"reviews": [
{
"updated_at": "2025-06-21T00:00:00Z",
"body": "Easy to Use and Boosted Our Revenue!\n\nMarsello is fantastic! It's super easy to use, even for beginners. Setting up email campaigns and loyalty programs is a breeze. We've seen a significant boost in our revenue since we started using it. Highly recommend!",
"merchant_name": "East Coast Supplements",
"domains": [
{
"platform_domain": "east-coast-supplements-au.myshopify.com",
"name": "eastcoastsupplements.com.au",
"platform_rank": 275071
}
],
"rating": 5
},
{
"updated_at": "2025-04-30T00:00:00Z",
"body": "Disappointing Experience — Overpriced, No Refund, Poor Support\n\nWe had a very bad experience with Marsello. They charged our business $300 CAD even though we never got to use the app. When we reached out within 30 days, explaining that we found their service too expensive for their poor features and wanted a refund, they outright refused.\n\nTheir customer support was unhelpful and dismissive. Despite the fact that we hadn't benefited from the platform, they kept the full payment — which feels like they simply took our money without delivering value. For a loyalty program, their pricing is overrated and the service (poor features) does not match the cost.\n\nI strongly do not recommend Marsello to any business. Poor policies, bad customer experience, and no flexibility. Be careful before signing up — they do not stand behind their product.",
"merchant_name": "VAPEPUB",
"domains": [
{
"platform_domain": "vapepub.myshopify.com",
"name": "vapepub.ca",
"platform_rank": 698039
}
],
"rating": 1
}
]
}
List Apps
Returns a list of Apps. By default, 50 Apps are returned in a single request. The page request option can be used to paginate.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second |
Pro and Elite | 2 requests/second |
Request Options
Filters the results to Apps that belong to the provided categories. Multiple categories must be comma-separated.
The boolean operation to apply to values provided in the f:categories request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with install counts greater than or equal to the provided integer value.
Filters the results to Apps with install counts than or equal to the provided integer value.
Filters the results to Apps on the given ecommerce platform. Multiple values must be comma-separated.
Valid values are:
- custom
- shopify
- wix
- woocommerce
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with review counts greater than or equal to the provided integer value.
Filters the results to Apps with review counts than or equal to the provided integer value.
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- average_rating
- created_at
- installs
- removed_at
- reviews
Filters Apps based on a text query. (e.g., a query for "dropship" will return only Apps that matching the word "dropship" in the App name or description fields).
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app?page_size=2&f:p=shopify&f:categories=marketing'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:p":"shopify","f:categories":"marketing"}' 'https://storeleads.app/json/api/v1/all/app'
Example Response
{
"apps": [
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/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": 704,
"instp": 0.0002720510095642933,
"installs_30d": 8,
"installs_90d": -14
}
]
}
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
- description
- name
- style (an estimate of the theme style in use based on HTML similarity with theme store demo)
- cost (in cents of USD, only present if theme is sold in Shopify Theme Store and is not free)
- vendor
- version (for some themes only)
The number of distinct variants across all products sold by the Domain.
Only available for Shopify stores using the regular (non-headless) frontend.
The number of distinct vendors of products sold by the Domain.
Vendor counts are only available for Shopify stores.
Retrieve a Domain by Name
Retrieves the details of a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Request Options
For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.sanrio.com'
Example Response
{
"domain": {
"theme": {
"name": "6/20/25 crocs swarovski jibbitz",
"style": "Unknown",
"vendor": "Unknown",
"version": "2.0.3"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.sanrio.com",
"city": "Torrance",
"last_updated_at": "2025-06-25T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"currency_code": "USD",
"title": "The Official Home of Hello Kitty \u0026 Friends",
"store_locator_page": "https://www.sanrio.com/pages/store-locator-2023",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://www.sanrio.com/cdn/shop/files/favicon-f7e51f5e17a02b62261b0f34cfdd371df2daa110501b88122c47ff76e8bbc082_228x228.png?v=1614306028",
"career_page": "https://www.sanrio.com/pages/careers",
"sizing_page": "https://www.sanrio.com/pages/sanrio-and-torrid-launch-new-hello-kitty-collection-in-sizes-10-to-30",
"returns_page": "https://www.sanrio.com/pages/sanrios-aggretsuko-will-return-to-netflix-for-season-2",
"region": "Americas",
"language_code": "en",
"platform_domain": "sanrio-na.myshopify.com",
"last_plan_change_at": "2020-11-15T00:00:00",
"platform": "shopify",
"location": "Torrance, CA, USA",
"og_image": "https://www.sanrio.com/cdn/shop/files/HK_AND_Friends_cream_600x600.png?v=1614311113",
"max_product_published_at": "2025-06-23T00:00:00",
"merchant_name": "Sanrio",
"avg_price_formatted": "$33.20",
"created_at": "2016-12-30T00:00:00",
"name": "www.sanrio.com",
"tld1": "sanrio.com",
"description": "Explore the supercute world of Sanrio, home to Hello Kitty, My Melody, Kuromi, Aggretsuko, Gudetama, and more!",
"retailer_page": "https://www.enescobusiness.com/become-a-retailer/",
"contact_info": [
{
"description": "Sanrio's official account for everything @hellokitty and friends!",
"followers": 330300,
"posts": 5610,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/sanrio"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/sanrio"
},
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/sanrio"
},
{
"description": "Follow the official Sanrio® Pinterest page for the latest from Hello Kitty, My Melody, Chococat, Kuromi, Cinnamoroll, Keroppi, Badtz-Maru and more!",
"followers": 44100,
"posts": 1380,
"source": "/",
"type": "pinterest",
"value": "https://pinterest.com/sanrio"
},
{
"description": "Hello friends! Welcome to the Hello Kitty \u0026amp; Friends YouTube channel – we’re happy that you’re here! Learn all about Hello Kitty and her friends while enjoyin...",
"followers": 3900000,
"followers_90d": 712987,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@HelloKittyandFriends"
},
{
"description": "Hello friends! Welcome to the Hello Kitty \u0026amp; Friends YouTube channel – we’re happy that you’re here! Learn all about Hello Kitty and her friends while enjoyin...",
"followers": 3880000,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/SanrioInc"
},
{
"description": "The most wholesome content on TikTok \n🌈✨💕",
"followers": 3700000,
"followers_30d": 107142,
"followers_90d": 197799,
"likes": 49400000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@sanrio"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "hello@sanrio-sea.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "info@sanriolicense.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "license@sanrio.com.cn"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "licensing@sanrio.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "marketing@sanrio.com.hk"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "wholesale@sanrio.com"
},
{
"source": "/pages/sanrio-announces-return-of-tanaka-farms-pumpkin-patch-for-second-year",
"type": "facebook",
"value": "https://www.facebook.com/hellokitty"
},
{
"source": "/pages/sanrio-announces-return-of-tanaka-farms-pumpkin-patch-for-second-year",
"type": "phone",
"value": "(323) 377-7210"
},
{
"source": "/pages/privacy-policy",
"type": "email",
"value": "customercare@sanrio.com"
},
{
"source": "/pages/privacy-policy",
"type": "phone",
"value": "(866) 957-0006"
},
{
"source": "/pages/sanrios-aggretsuko-will-return-to-netflix-for-season-2",
"type": "phone",
"value": "(323) 874-4073"
},
{
"source": "/pages/terms-of-service",
"type": "phone",
"value": "(650) 952-2880"
},
{
"source": "/pages/terms-of-service",
"type": "phone",
"value": "+18442636274"
},
{
"source": "/pages/press-releases",
"type": "email",
"value": "pr@sanrio.com"
},
{
"source": "/pages/childrens-privacy-policy",
"type": "phone",
"value": "(800) 759-6454"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/sanrio-inc."
}
],
"aliases": [
"www.hellokittysupercutefestival.com"
],
"apps": [
{
"installed_at": "2023-06-28T13:48:54Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/because",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost conversions with dynamic personalization and targeted customer lifecycle experiences.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b2e7afb7bd083862308fe2d5c1723ca5/icon/CIv_yOP4yP0CEAE=.png",
"name": "Because: CRO + Personalization",
"token": "because",
"platform": "shopify",
"vendor_name": "Because",
"vendor_url": "https://apps.shopify.com/partners/because-intelligence",
"vendor_email": "support@becauseintelligence.com",
"vendor_website": "https://www.trybecause.com/",
"vendor_address": "124 South Morgan Street, Unit 5309, Tampa, FL, 33602, US",
"id": "1.because",
"created_at": "2020-09-21T00:00:00",
"plans": [
{
"name": "Talk to Us",
"monthly_cost": "Free"
},
{
"name": "$99/mo",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "$499/mo",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"upsell and cross-sell",
"site optimization - other"
],
"integrates_with": [
"Klaviyo\n \n \n Yotpo\n \n \n Recharge\n \n \n Octane\n \n \n Attentive\n \n \n Skio"
],
"review_count": 86,
"installs": 523,
"instp": 0.00020210607670756447,
"installs_30d": -4,
"installs_90d": -27,
"reviews_30d": -1,
"reviews_90d": -39
},
{
"installed_at": "2023-04-12T09:37:38Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/broken-link-manager",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Auto-detect 404 errors and generate reports, provide one-click fix and bulk auto-redirect",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/84e0aa977370beb48bcf0fac08b7be2d/icon/CJfN-r2CrocDEAE=.png",
"name": "SEOAnt ‑ 404 Link Redirect",
"token": "broken-link-manager",
"platform": "shopify",
"vendor_name": "Channelwill",
"vendor_url": "https://apps.shopify.com/partners/giraffly",
"vendor_email": "support@seoant.com",
"vendor_website": "https://www.seoant.com/",
"vendor_address": "8 The Green, SteA, Dover, DE, 19901, US",
"id": "1.broken-link-manager",
"created_at": "2019-10-11T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Premium",
"monthly_cost": "$7.99/month",
"monthly_cost_cents": 799
}
],
"categories": [
"seo"
],
"integrates_with": [
"shopfiy flow"
],
"review_count": 143,
"installs": 3928,
"instp": 0.0015179209738189546,
"installs_30d": -6,
"installs_90d": -4,
"reviews_30d": -1,
"reviews_90d": -39
},
{
"installed_at": "2021-01-07T23:22:06Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/cozy-gallery",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Showcase galleries of images in an appealing way to make your store look aesthetic.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a4a88e805a0889a0761ee91584aa4b56/icon/COCf-Z62nYMDEAE=.png",
"name": "Cozy Image Gallery",
"token": "cozy-gallery",
"platform": "shopify",
"vendor_name": "eCommerce Addons",
"vendor_url": "https://apps.shopify.com/partners/ecommerce-addons",
"vendor_email": "support@addons.business",
"vendor_website": "https://addons.business",
"id": "1.cozy-gallery",
"created_at": "2017-10-27T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$1.99/month",
"monthly_cost_cents": 199
},
{
"name": "Basic",
"monthly_cost": "$2.99/month",
"monthly_cost_cents": 299
},
{
"name": "Unlimited",
"monthly_cost": "$5.99/month",
"monthly_cost_cents": 599
},
{
"name": "Premium",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
}
],
"categories": [
"image gallery",
"images and media - other"
],
"review_count": 194,
"installs": 2736,
"instp": 0.0010572891508066854,
"installs_30d": -31,
"installs_90d": -78,
"reviews_90d": -1
},
{
"installed_at": "2022-01-05T16:57:37Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/cozy-video-gallery",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Showcase your product videos hosted on YouTube or Vimeo in a Video Gallery Grid using our app.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0f330950ed40f544ddf6e4658a460ea/icon/CP29oue1nYMDEAE=.png",
"name": "Cozy YouTube Videos Gallery",
"token": "cozy-video-gallery",
"platform": "shopify",
"vendor_name": "eCommerce Addons",
"vendor_url": "https://apps.shopify.com/partners/ecommerce-addons",
"vendor_email": "cozyapps.helpdesk@gmail.com",
"vendor_website": "https://addons.business",
"id": "1.cozy-video-gallery",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "Unlimited",
"monthly_cost": "$1.99/month",
"monthly_cost_cents": 199
}
],
"categories": [
"video and livestream",
"images and media - other"
],
"review_count": 50,
"installs": 705,
"instp": 0.0002724374456574244,
"installs_30d": -5,
"installs_90d": -18,
"reviews_30d": -1,
"reviews_90d": -2
},
{
"installed_at": "2023-01-11T13:49:00Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/gifter-cart-auto-include",
"state": "Active",
"free_trial_duration": "120h0m0s",
"description": "EasyGift: Free gift with purchase app for auto add to cart automatic gift, BOGO \u0026 Buy X Get Y offer",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2ebbc8b520f25528dbc6c4906b5e8263/icon/CJWw-9mD-e8CEAE=.png",
"name": "EG Auto Add to Cart Free Gift",
"token": "gifter-cart-auto-include",
"platform": "shopify",
"vendor_name": "506",
"vendor_url": "https://apps.shopify.com/partners/fiftypoint6",
"vendor_email": "support@506.io",
"vendor_website": "https://506.io",
"vendor_address": "Thomas House, London, ENG, SW1V 1PX, GB",
"id": "1.gifter-cart-auto-include",
"created_at": "2019-12-02T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Unlimited",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
}
],
"categories": [
"cart customization",
"discounts"
],
"integrates_with": [
"Checkout\n\n \n \n Cartix\n \n \n ReCharge"
],
"review_count": 709,
"installs": 9645,
"instp": 0.003727176118249445,
"installs_30d": 185,
"installs_90d": 613,
"reviews_30d": 23,
"reviews_90d": -9
},
{
"installed_at": "2023-05-17T13:51:54Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/google-shopping-feed",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Submits Product Feed for Google Shopping, Microsoft, Facebook \u0026 Pinterest. Manages PMAX Campaigns.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/02b5709becbcc8cb72e7853b282ccbec/icon/CLe36pCU6okDEAE=.png",
"name": "Simprosys Google Shopping Feed",
"token": "google-shopping-feed",
"platform": "shopify",
"vendor_name": "Simprosys InfoMedia",
"vendor_url": "https://apps.shopify.com/partners/simprosys",
"vendor_email": "support@simprosys.com",
"vendor_website": "https://simprosys.com",
"vendor_address": "B-303, Shapath Hexa, Opp Gujarat High Court, S. G. Highway, Ahmedabad, GJ, 380060, IN",
"id": "1.google-shopping-feed",
"created_at": "2017-08-16T00:00:00",
"plans": [
{
"name": "Up to 500 Products",
"monthly_cost": "$4.99/month",
"monthly_cost_cents": 499
},
{
"name": "501-1000 Products",
"monthly_cost": "$8.99/month",
"monthly_cost_cents": 899
},
{
"name": "1001-5000 Products",
"monthly_cost": "$13.99/month",
"monthly_cost_cents": 1399
},
{
"name": "5001-10000 Product",
"monthly_cost": "$17.99/month",
"monthly_cost_cents": 1798
}
],
"categories": [
"marketplaces",
"product feeds"
],
"integrates_with": [
"Checkout\n\n \n \n Google Merchant Center\n \n \n Google Ads Account\n \n \n Google Analytics 4 (GA4)\n \n \n Pinterest For Business\n \n \n Microsoft Advertising\n \n \n Meta Ads / Meta Business Suite"
],
"review_count": 3963,
"installs": 47759,
"instp": 0.01845580137184813,
"installs_30d": -1262,
"installs_90d": -3384,
"reviews_30d": 2,
"reviews_90d": -2695
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/instant-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Your Store Sales \u0026 ROI with Search, Filters, Merchandising, and Personalization.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2fdf165bce6a41670dd95ec05375b66f/icon/CN_LrKrjy_4CEAE=.png",
"name": "Fast Simon AI Search \u0026 Filters",
"token": "instant-search",
"platform": "shopify",
"vendor_name": "Fast Simon",
"vendor_url": "https://apps.shopify.com/partners/fast-simon",
"vendor_email": "support@fastsimon.com",
"vendor_website": "https://www.fastsimon.com/",
"vendor_address": "5375 Beechwood Ln., Los Altos, CA, 94024, US",
"id": "1.instant-search",
"created_at": "2014-02-10T00:00:00",
"plans": [
{
"name": "FREE",
"monthly_cost": "Free"
},
{
"name": "STARTER",
"monthly_cost": "$39.99/month",
"monthly_cost_cents": 3999
},
{
"name": "ESSENTIAL",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Yotpo\n \n \n Langify\n \n \n Stamped.io\n \n \n TapCart\n \n \n Klaviyo\n \n \n Okendo"
],
"review_count": 362,
"installs": 2069,
"instp": 0.0007995362766882427,
"installs_30d": -15,
"installs_90d": -61,
"reviews_90d": -359
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "Grow smarter with automation and personalization for email marketing, sms, reviews, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5edd9000b933a8fa88c152d1e498531f/icon/CP6B2OOv3PYCEAE=.png",
"name": "Klaviyo: Email Marketing \u0026 SMS",
"token": "klaviyo-email-marketing",
"platform": "shopify",
"vendor_name": "Klaviyo",
"vendor_url": "https://apps.shopify.com/partners/klaviyo",
"vendor_email": "support@klaviyo.com",
"vendor_website": "https://www.klaviyo.com",
"vendor_address": "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 Recharge\n \n \n Aftership\n \n \n Typeform\n \n \n Meta Advertising\n \n \n Gorgias\n \n \n TikTok Advertising"
],
"review_count": 2447,
"installs": 364449,
"instp": 0.14083624770553568,
"installs_30d": 1440,
"installs_90d": 6038,
"reviews_30d": 65,
"reviews_90d": -907
},
{
"installed_at": "2021-10-28T18:27:49Z",
"average_rating": "4.9",
"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"
],
"review_count": 154,
"installs": 14442,
"instp": 0.005580910056999323,
"installs_30d": -49,
"installs_90d": -248,
"reviews_30d": -1,
"reviews_90d": -105
},
{
"installed_at": "2021-05-06T06:58:40Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/printful",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Create and sell custom products with print-on-demand dropshipping",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/3dd87416a3b1e12a9ef3604aaaaf4d1e/icon/CNDmhPSW_oQDEAE=.jpeg",
"name": "Printful: Print on Demand",
"token": "printful",
"platform": "shopify",
"vendor_name": "Printful",
"vendor_url": "https://apps.shopify.com/partners/jansons",
"vendor_email": "support@printful.com",
"vendor_website": "https://www.printful.com/",
"vendor_address": "11025 Westlake Dr, Charlotte, NC, 28273, US",
"id": "1.printful",
"created_at": "2013-11-25T00:00:00",
"plans": [
{
"name": "Free Plan",
"monthly_cost": "Free to install"
},
{
"name": "Growth Plan",
"monthly_cost": "$24.99/month",
"monthly_cost_cents": 2499
}
],
"categories": [
"dropshipping",
"print on demand (pod)"
],
"integrates_with": [
"Checkout\n\n \n \n eBay\n \n \n Etsy\n \n \n Amazon\n \n \n Storenvy"
],
"review_count": 2205,
"installs": 100698,
"instp": 0.03891334170611535,
"installs_30d": -1757,
"installs_90d": -4936,
"reviews_30d": -14,
"reviews_90d": -5191
},
{
"installed_at": "2022-03-29T17:07:04Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/product-filter-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize sales with AI-powered search, custom product filters, and robust product discovery tools",
"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": "FREE",
"monthly_cost": "Free"
},
{
"name": "BASIC",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "ESSENTIAL",
"monthly_cost": "$239/month",
"monthly_cost_cents": 23900
},
{
"name": "PROFESSIONAL",
"monthly_cost": "$399/month",
"monthly_cost_cents": 39900
}
],
"categories": [
"search and filters",
"navigation and menus"
],
"integrates_with": [
"Checkout\n\n \n \n Wishlist Plus\n \n \n Weglot\n \n \n GemPages\n \n \n Currency Converter\n \n \n Product Labels\n \n \n Reviews apps"
],
"review_count": 1564,
"installs": 25154,
"instp": 0.00972041348661965,
"installs_30d": -168,
"installs_90d": 144,
"reviews_90d": -404
},
{
"installed_at": "2021-10-15T11:33:29Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/product-warnings",
"state": "Active",
"description": "Create warnings for P65, Pre-order, Shipping delays, Product availability, Announcements, etc.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/73f409bed64ad92de15f0b514e54ee38/icon/CJOWxaz0lu8CEAE=.png",
"name": "Warnify Pro Warnings",
"token": "product-warnings",
"platform": "shopify",
"vendor_name": "EC Apps Sp z o o",
"vendor_url": "https://apps.shopify.com/partners/elasticsoft",
"vendor_email": "help@elastic-soft.com",
"vendor_website": "https://elastic-soft.freshdesk.com",
"id": "1.product-warnings",
"created_at": "2017-04-06T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Unlimited",
"monthly_cost": "$9.95/month",
"monthly_cost_cents": 994
}
],
"categories": [
"legal",
"pop-ups"
],
"integrates_with": [
"Checkout"
],
"review_count": 246,
"installs": 3561,
"instp": 0.0013760989276398415,
"installs_30d": -31,
"installs_90d": -67,
"reviews_30d": -1
},
{
"installed_at": "2023-09-20T16:19:02Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/returngo",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Automate returns \u0026 exchanges with a branded self-service return portal for easy returns management.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9b4ed6054e48dbff51077265060d311f/icon/CKKshq-6s_ACEAE=.png",
"name": "ReturnGO Returns \u0026 Exchanges",
"token": "returngo",
"platform": "shopify",
"vendor_name": "ReturnGO",
"vendor_url": "https://apps.shopify.com/partners/returngo",
"vendor_email": "support@returngo.ai",
"vendor_website": "https://returngo.ai/",
"vendor_address": "Arieh Shenkar St 1,, Herzeliya, 4672501, IL",
"id": "1.returngo",
"created_at": "2020-09-14T00:00:00",
"plans": [
{
"name": "Return Guard",
"monthly_cost": "Free to install"
},
{
"name": "Starter",
"monthly_cost": "$23/month",
"monthly_cost_cents": 2300
},
{
"name": "Premium",
"monthly_cost": "$147/month",
"monthly_cost_cents": 14700
},
{
"name": "Pro",
"monthly_cost": "$297/month",
"monthly_cost_cents": 29700
}
],
"categories": [
"returns and exchanges",
"order tracking"
],
"integrates_with": [
"USPS\n \n \n Gorgias\n \n \n Canada Post\n \n \n Shippo\n \n \n Shipstation\n \n \n Sendcloud"
],
"review_count": 336,
"installs": 2531,
"instp": 0.0009780697517148102,
"installs_30d": 50,
"installs_90d": 215,
"reviews_30d": 7,
"reviews_90d": -30
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/shogun",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "Easy to use visual page editor to design blog posts, product pages, landing pages \u0026 theme sections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0ca2c1526ec07b9f52021bd42651b1fd/icon/CO2wi8_0-4IDEAE=.jpeg",
"name": "Shogun ‑ Landing Page Builder",
"token": "shogun",
"platform": "shopify",
"vendor_name": "Shogun Labs, Inc.",
"vendor_url": "https://apps.shopify.com/partners/shogun",
"vendor_email": "support@getshogun.com",
"vendor_website": "https://getshogun.com",
"vendor_address": "440 N. Barranca Ave, Covina, CA, 91723, US",
"id": "1.shogun",
"created_at": "2015-09-21T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$249/month",
"monthly_cost_cents": 24900
},
{
"name": "Advanced",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"page builder",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n Google Analytics\n \n \n Adobe Typekit\n \n \n YouTube\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Instagram"
],
"review_count": 2090,
"installs": 41129,
"instp": 0.015893730074388948,
"installs_30d": -755,
"installs_90d": -1593,
"reviews_30d": -4,
"reviews_90d": -1149
},
{
"installed_at": "2024-12-20T23:06:13Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/shopify-mobile-apps",
"state": "Active",
"free_trial_duration": "4800h0m0s",
"description": "Tapcart is more than a mobile app builder—it’s an extensive platform designed to scale your brand",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a228b831b4225be070d5a592528374db/icon/CKP--cqDk_YCEAE=.png",
"name": "Tapcart ‑ Mobile App Builder",
"token": "shopify-mobile-apps",
"platform": "shopify",
"vendor_name": "Tapcart",
"vendor_url": "https://apps.shopify.com/partners/tapcart",
"vendor_email": "help@tapcart.co",
"vendor_website": "https://tapcart.com",
"vendor_address": "1417 6th Street #200, Santa Monica, CA, 90401, US",
"id": "1.shopify-mobile-apps",
"created_at": "2017-04-11T00:00:00",
"plans": [
{
"name": "Tapcart Core",
"monthly_cost": "$250/month",
"monthly_cost_cents": 25000
},
{
"name": "Tapcart Ultimate",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Tapcart Enterprise",
"monthly_cost": "$1,000/month",
"monthly_cost_cents": 100000
}
],
"categories": [
"mobile app builder"
],
"integrates_with": [
"ReCharge\n \n \n Yotpo\n \n \n Klaviyo\n \n \n Nosto\n \n \n Facebook SDK\n \n \n Foursixty"
],
"review_count": 338,
"installs": 2553,
"instp": 0.0009865713457636945,
"installs_30d": 1,
"installs_90d": 24,
"reviews_30d": 1,
"reviews_90d": 8
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/swym-relay",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost sales with an easy-to-set-up Wishlist for all customer touchpoints. Top integrations included.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d612f58ce0decfaba38849af3396fb5b/icon/CKKXmdzFx_MCEAE=.jpeg",
"name": "Swym Wishlist Plus",
"token": "swym-relay",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "http://getswym.com",
"vendor_address": "Seattle, WA, US",
"id": "1.swym-relay",
"created_at": "2016-07-29T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"wishlists",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Klaviyo - Yotpo - Mailchimp\n \n \n Postscript-Attentive-Twillio\n \n \n Tapcart - Stikky - PageFly\n \n \n Listrak - ReSci - DotDigital\n \n \n BlueCore-Bloomreach-Ometria\n \n \n Sailthru-Omnisend-Hubspot"
],
"review_count": 1438,
"installs": 49654,
"instp": 0.019188097768331563,
"installs_30d": 777,
"installs_90d": 2208,
"reviews_30d": 6,
"reviews_90d": -869
},
{
"installed_at": "2024-12-20T23:06:13Z",
"average_rating": "1",
"app_store_url": "https://apps.shopify.com/warnify-product-warnings",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Show important product warnings on your storefront.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/671d09f12969c33951ab7a5413af6b20/icon/CJC48qz0lu8CEAE=.png",
"name": "Warnify",
"token": "warnify-product-warnings",
"platform": "shopify",
"vendor_name": "Warnify",
"vendor_url": "https://apps.shopify.com/partners/warnify",
"vendor_email": "support@warnify.app",
"id": "1.warnify-product-warnings",
"created_at": "2020-07-23T00:00:00",
"categories": [
"pop-ups",
"badges and icons"
],
"review_count": 1,
"installs": 2342,
"instp": 0.0009050333301130326,
"installs_30d": 14,
"installs_90d": 16
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/watchlist",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Send Email/SMS alerts for back in stock products. Create preorder/restock lists to drive revenue.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9905a4c8f22cb4a3b0c32af55a58ec21/icon/CMuIhZLGx_MCEAE=.jpeg",
"name": "Swym Back in Stock Alerts",
"token": "watchlist",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "https://www.getswym.com/features/back-in-stock-product-alerts",
"vendor_address": "Seattle, WA, US",
"id": "1.watchlist",
"created_at": "2016-10-13T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"stock alerts",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Shopify Flow\n \n \n Klaviyo - Omnisend\n \n \n Sailthru - Listrak\n \n \n Bluecore - Bloomreach\n \n \n dotDigital - Optimizely\n \n \n Mailchimp - Ometria\n \n \n Twillio - Postscript"
],
"review_count": 474,
"installs": 23882,
"instp": 0.009228866776156893,
"installs_30d": 57,
"installs_90d": 293,
"reviews_90d": -191
},
{
"installed_at": "2022-12-09T17:44:38Z",
"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": 24351,
"instp": 0.00941010530383538,
"installs_30d": 286,
"installs_90d": 368
}
],
"categories": [
"/Arts \u0026 Entertainment/Comics \u0026 Animation/Cartoons",
"/Toys \u0026 Hobbies"
],
"technologies": [
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1610920
},
{
"installed_at": "2024-02-16T02:21: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": 2413207
},
{
"installed_at": "2023-10-31T23:57:24Z",
"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": 4723482
},
{
"installed_at": "2021-06-08T15:55:00Z",
"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": 3948429
},
{
"installed_at": "2020-11-25T11:52:34Z",
"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": 3000331
},
{
"installed_at": "2023-03-04T10:28:34Z",
"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": 4401345
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1471424
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 4239853
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Instant Search Plus",
"description": "Search \u0026 merchandising for fast growing online brands. Now called Fast Simon.",
"vendor_url": "https://www.instantsearchplus.com",
"icon_url": "https://storeleads.app/img/tech/instantsearchplus.png",
"categories": [
"Search"
],
"installs": 2704
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"vendor_url": "https://www.klaviyo.com/",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"categories": [
"Marketing Automation"
],
"installs": 459358
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1441181
},
{
"installed_at": "2021-05-06T06:58:40Z",
"name": "Printful",
"description": "Easy print-on-demand drop shipping and fulfillment warehouse services.",
"vendor_url": "https://www.printful.com",
"icon_url": "https://storeleads.app/img/tech/printful.png",
"categories": [
"Fulfillment"
],
"installs": 105483
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Shogun",
"description": "Build and optimize your pages with Shogun, the most powerful page building platform for eCommerce teams and agencies.",
"vendor_url": "http://getshogun.com",
"icon_url": "https://storeleads.app/img/tech/shogun.png",
"categories": [
"Page Builder"
],
"installs": 42142
},
{
"installed_at": "2021-01-23T10:11:15Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"vendor_url": "https://shop.app/what-shop-does",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"categories": [
"Payment Processor"
],
"installs": 1375755
},
{
"installed_at": "2024-08-10T05:00:09Z",
"name": "Shopify Collective",
"description": "Connect with your favorite brands to power product collaborations, curated marketplaces and everything in between—seamlessly inside Shopify.",
"vendor_url": "https://www.shopify.com/collective",
"icon_url": "https://storeleads.app/technologies/img/ShopifyCollective.png",
"categories": [
"Affiliate Marketing"
],
"installs": 7502
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Swym",
"description": "Over 19,000 merchants use Swym to create optimized shopping experiences.",
"vendor_url": "https://swym.it",
"icon_url": "https://storeleads.app/img/tech/swym.png",
"installs": 34578
},
{
"installed_at": "2024-12-20T23:06:13Z",
"name": "Tapcart",
"description": "Launch a mobile app for your Shopify store with no coding required.",
"vendor_url": "https://tapcart.com",
"icon_url": "https://storeleads.app/img/tech/tapcart.png",
"categories": [
"Mobile App Builder"
],
"installs": 2564
},
{
"installed_at": "2023-04-26T08:06:49Z",
"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": 1311652
},
{
"installed_at": "2023-04-26T08:06:49Z",
"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": 2146623
},
{
"installed_at": "2022-12-09T17:44:38Z",
"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": 233417
}
],
"collections": [
"cosmetic-bags",
"dumbgood",
"loungefly-x-hello-kitty-friends",
"puma",
"blankets-throws",
"collectibles",
"erin-condren",
"hanamaruobake",
"hello-kitty",
"memo-pads",
"summer-vibes",
"sale-1",
"hello-kitty-and-friends-x-care-bears",
"pets",
"sanrio-gift-cards",
"blind-boxes",
"igloo",
"jazwares",
"my-sweet-piano",
"east-west",
"outerwear",
"all",
"tops",
"travel",
"bestsellers",
"stoney-clover-lane",
"gudetama",
"lesportsac",
"my-melody-kuromi",
"photo-albums",
"shoes",
"sunglasses",
"bags-and-accessories",
"charmmy-kitty",
"hair-accessories",
"toys",
"baggu",
"smartphone-charms",
"zipper-pouches",
"cogimyun",
"games-puzzles",
"hangyodon",
"lloromannic",
"calendars-planners",
"fender",
"kitchen",
"monkichi",
"sugarfina",
"tuxedosam",
"my-melody",
"keychains",
"rings",
"u-sa-ha-na",
"home-goods",
"kate-spade-new-york",
"stationery",
"sticky-notes",
"crossbody-bags",
"pochacco",
"hello-kitty-x-bruno-mars",
"bottoms",
"chococat",
"cushions",
"greeting-cards",
"keroppi",
"starface",
"deals-and-promos",
"dresses",
"earrings",
"jewelry",
"joyjolt",
"plush",
"studio-oh",
"sanrio-originals",
"cameras-film",
"cell-phone-cases-accessories",
"bag-charms",
"ballet-kitten-series",
"moon-oral-beauty",
"plush-mascot-keychain",
"bracelets",
"impressions-vanity",
"pekkle",
"tech-accessories",
"the-creme-shop",
"party-gift",
"games",
"girl-skateboards-x-sanrio",
"little-words-project",
"loungewear",
"mascots",
"new-arrivals-front",
"notebooks",
"apparel",
"beauty",
"cinnamoroll",
"handbags",
"kids-clothing-shoes",
"other-sanrio-characters",
"tote-bags",
"toys-games",
"kuromi",
"retrospekt",
"socks",
"storage",
"all-sanrio-characters",
"bath",
"building-sets",
"japanla",
"adorned-by-chi-x-hello-kitty",
"littletwinstars",
"my-melody-x-strawberry-shortcake",
"badtz-maru",
"necklaces",
"stickers",
"wallets",
"watches",
"letter-sets-envelopes",
"new",
"nintendo-switch",
"multi-character",
"pompompurin",
"sanrio-x-sonix",
"auto",
"backpacks",
"collaborations",
"crocs",
"hello-kitty-and-friends-x-anti-social-social-club",
"pens-pencils",
"hats",
"home",
"bags"
],
"cluster_domains": [
"www.sanrio.com",
"www.sanrio.com.tw",
"sanrio.com.co",
"shop.baby.sanrio.co.jp",
"stg-shop.baby.sanrio.co.jp"
],
"features": [
"Wholesale/Retailers Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Tracking or Returns",
"Returns Page",
"Store Locator Page",
"Has Blog"
],
"sales_channels": [
"Amazon"
],
"sales_channel_urls": {
"Amazon": "https://www.amazon.com/stores/page/A094FA37-0512-4406-9148-F6ADD7448E52"
},
"tags": [
"Dropshipper",
"Print on Demand"
],
"ships_to_countries": [
"Canada",
"Mexico",
"United States"
],
"rank_percentile": 0.001,
"collection_count": 321,
"rank": 139,
"latitude": 33.8358492,
"platform_rank_percentile": 0.0001,
"longitude": -118.3406288,
"estimated_page_views": 51649220,
"estimated_sales": 4884873776,
"estimated_sales_yearly": 58618485312,
"estimated_visits": 13341153,
"product_images": 18089,
"product_images_created_365": 10715,
"product_images_created_90": 1174,
"product_images_created_30": 297,
"employee_count": 148,
"cc_rank": 56683,
"cc_centrality": 7658,
"product_count": 3457,
"max_price": 68000,
"max_price_usd": 68000,
"max_weight": 67132,
"monthly_app_spend": 12796,
"min_price": 199,
"min_price_usd": 199,
"min_weight": 5,
"variant_count": 5880,
"vendor_count": 81,
"avg_price": 3320,
"avg_price_usd": 3320,
"avg_weight": 351,
"platform_rank": 2
}
}
Bulk Retrieve Domains By Name
Retrieves the details for up to 100 Domains by name. Name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Request Options
For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"domains": ["www.sanrio.com"]}' 'https://storeleads.app/json/api/v1/all/domain/bulk'
Example Response
{
"domains": [
{
"theme": {
"name": "6/20/25 crocs swarovski jibbitz",
"style": "Unknown",
"vendor": "Unknown",
"version": "2.0.3"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.sanrio.com",
"city": "Torrance",
"last_updated_at": "2025-06-25T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"currency_code": "USD",
"title": "The Official Home of Hello Kitty \u0026 Friends",
"store_locator_page": "https://www.sanrio.com/pages/store-locator-2023",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://www.sanrio.com/cdn/shop/files/favicon-f7e51f5e17a02b62261b0f34cfdd371df2daa110501b88122c47ff76e8bbc082_228x228.png?v=1614306028",
"career_page": "https://www.sanrio.com/pages/careers",
"sizing_page": "https://www.sanrio.com/pages/sanrio-and-torrid-launch-new-hello-kitty-collection-in-sizes-10-to-30",
"returns_page": "https://www.sanrio.com/pages/sanrios-aggretsuko-will-return-to-netflix-for-season-2",
"region": "Americas",
"language_code": "en",
"platform_domain": "sanrio-na.myshopify.com",
"last_plan_change_at": "2020-11-15T00:00:00",
"platform": "shopify",
"location": "Torrance, CA, USA",
"og_image": "https://www.sanrio.com/cdn/shop/files/HK_AND_Friends_cream_600x600.png?v=1614311113",
"max_product_published_at": "2025-06-23T00:00:00",
"merchant_name": "Sanrio",
"avg_price_formatted": "$33.20",
"created_at": "2016-12-30T00:00:00",
"name": "www.sanrio.com",
"tld1": "sanrio.com",
"description": "Explore the supercute world of Sanrio, home to Hello Kitty, My Melody, Kuromi, Aggretsuko, Gudetama, and more!",
"retailer_page": "https://www.enescobusiness.com/become-a-retailer/",
"contact_info": [
{
"description": "Sanrio's official account for everything @hellokitty and friends!",
"followers": 330300,
"posts": 5610,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/sanrio"
},
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/sanrio"
},
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/sanrio"
},
{
"description": "Follow the official Sanrio® Pinterest page for the latest from Hello Kitty, My Melody, Chococat, Kuromi, Cinnamoroll, Keroppi, Badtz-Maru and more!",
"followers": 44100,
"posts": 1380,
"source": "/",
"type": "pinterest",
"value": "https://pinterest.com/sanrio"
},
{
"description": "Hello friends! Welcome to the Hello Kitty \u0026amp; Friends YouTube channel – we’re happy that you’re here! Learn all about Hello Kitty and her friends while enjoyin...",
"followers": 3900000,
"followers_90d": 712987,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/@HelloKittyandFriends"
},
{
"description": "Hello friends! Welcome to the Hello Kitty \u0026amp; Friends YouTube channel – we’re happy that you’re here! Learn all about Hello Kitty and her friends while enjoyin...",
"followers": 3880000,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/SanrioInc"
},
{
"description": "The most wholesome content on TikTok \n🌈✨💕",
"followers": 3700000,
"followers_30d": 107142,
"followers_90d": 197799,
"likes": 49400000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@sanrio"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "hello@sanrio-sea.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "info@sanriolicense.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "license@sanrio.com.cn"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "licensing@sanrio.com"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "marketing@sanrio.com.hk"
},
{
"source": "/pages/business-opportunities",
"type": "email",
"value": "wholesale@sanrio.com"
},
{
"source": "/pages/sanrio-announces-return-of-tanaka-farms-pumpkin-patch-for-second-year",
"type": "facebook",
"value": "https://www.facebook.com/hellokitty"
},
{
"source": "/pages/sanrio-announces-return-of-tanaka-farms-pumpkin-patch-for-second-year",
"type": "phone",
"value": "(323) 377-7210"
},
{
"source": "/pages/privacy-policy",
"type": "email",
"value": "customercare@sanrio.com"
},
{
"source": "/pages/privacy-policy",
"type": "phone",
"value": "(866) 957-0006"
},
{
"source": "/pages/sanrios-aggretsuko-will-return-to-netflix-for-season-2",
"type": "phone",
"value": "(323) 874-4073"
},
{
"source": "/pages/terms-of-service",
"type": "phone",
"value": "(650) 952-2880"
},
{
"source": "/pages/terms-of-service",
"type": "phone",
"value": "+18442636274"
},
{
"source": "/pages/press-releases",
"type": "email",
"value": "pr@sanrio.com"
},
{
"source": "/pages/childrens-privacy-policy",
"type": "phone",
"value": "(800) 759-6454"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/sanrio-inc."
}
],
"aliases": [
"www.hellokittysupercutefestival.com"
],
"apps": [
{
"installed_at": "2023-06-28T13:48:54Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/because",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost conversions with dynamic personalization and targeted customer lifecycle experiences.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b2e7afb7bd083862308fe2d5c1723ca5/icon/CIv_yOP4yP0CEAE=.png",
"name": "Because: CRO + Personalization",
"token": "because",
"platform": "shopify",
"vendor_name": "Because",
"vendor_url": "https://apps.shopify.com/partners/because-intelligence",
"vendor_email": "support@becauseintelligence.com",
"vendor_website": "https://www.trybecause.com/",
"vendor_address": "124 South Morgan Street, Unit 5309, Tampa, FL, 33602, US",
"id": "1.because",
"created_at": "2020-09-21T00:00:00",
"plans": [
{
"name": "Talk to Us",
"monthly_cost": "Free"
},
{
"name": "$99/mo",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "$499/mo",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"upsell and cross-sell",
"site optimization - other"
],
"integrates_with": [
"Klaviyo\n \n \n Yotpo\n \n \n Recharge\n \n \n Octane\n \n \n Attentive\n \n \n Skio"
],
"review_count": 86,
"installs": 523,
"instp": 0.00020210607670756447,
"installs_30d": -4,
"installs_90d": -27,
"reviews_30d": -1,
"reviews_90d": -39
},
{
"installed_at": "2023-04-12T09:37:38Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/broken-link-manager",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Auto-detect 404 errors and generate reports, provide one-click fix and bulk auto-redirect",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/84e0aa977370beb48bcf0fac08b7be2d/icon/CJfN-r2CrocDEAE=.png",
"name": "SEOAnt ‑ 404 Link Redirect",
"token": "broken-link-manager",
"platform": "shopify",
"vendor_name": "Channelwill",
"vendor_url": "https://apps.shopify.com/partners/giraffly",
"vendor_email": "support@seoant.com",
"vendor_website": "https://www.seoant.com/",
"vendor_address": "8 The Green, SteA, Dover, DE, 19901, US",
"id": "1.broken-link-manager",
"created_at": "2019-10-11T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Premium",
"monthly_cost": "$7.99/month",
"monthly_cost_cents": 799
}
],
"categories": [
"seo"
],
"integrates_with": [
"shopfiy flow"
],
"review_count": 143,
"installs": 3928,
"instp": 0.0015179209738189546,
"installs_30d": -6,
"installs_90d": -4,
"reviews_30d": -1,
"reviews_90d": -39
},
{
"installed_at": "2021-01-07T23:22:06Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/cozy-gallery",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Showcase galleries of images in an appealing way to make your store look aesthetic.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a4a88e805a0889a0761ee91584aa4b56/icon/COCf-Z62nYMDEAE=.png",
"name": "Cozy Image Gallery",
"token": "cozy-gallery",
"platform": "shopify",
"vendor_name": "eCommerce Addons",
"vendor_url": "https://apps.shopify.com/partners/ecommerce-addons",
"vendor_email": "support@addons.business",
"vendor_website": "https://addons.business",
"id": "1.cozy-gallery",
"created_at": "2017-10-27T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$1.99/month",
"monthly_cost_cents": 199
},
{
"name": "Basic",
"monthly_cost": "$2.99/month",
"monthly_cost_cents": 299
},
{
"name": "Unlimited",
"monthly_cost": "$5.99/month",
"monthly_cost_cents": 599
},
{
"name": "Premium",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
}
],
"categories": [
"image gallery",
"images and media - other"
],
"review_count": 194,
"installs": 2736,
"instp": 0.0010572891508066854,
"installs_30d": -31,
"installs_90d": -78,
"reviews_90d": -1
},
{
"installed_at": "2022-01-05T16:57:37Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/cozy-video-gallery",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Showcase your product videos hosted on YouTube or Vimeo in a Video Gallery Grid using our app.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d0f330950ed40f544ddf6e4658a460ea/icon/CP29oue1nYMDEAE=.png",
"name": "Cozy YouTube Videos Gallery",
"token": "cozy-video-gallery",
"platform": "shopify",
"vendor_name": "eCommerce Addons",
"vendor_url": "https://apps.shopify.com/partners/ecommerce-addons",
"vendor_email": "cozyapps.helpdesk@gmail.com",
"vendor_website": "https://addons.business",
"id": "1.cozy-video-gallery",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "Unlimited",
"monthly_cost": "$1.99/month",
"monthly_cost_cents": 199
}
],
"categories": [
"video and livestream",
"images and media - other"
],
"review_count": 50,
"installs": 705,
"instp": 0.0002724374456574244,
"installs_30d": -5,
"installs_90d": -18,
"reviews_30d": -1,
"reviews_90d": -2
},
{
"installed_at": "2023-01-11T13:49:00Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/gifter-cart-auto-include",
"state": "Active",
"free_trial_duration": "120h0m0s",
"description": "EasyGift: Free gift with purchase app for auto add to cart automatic gift, BOGO \u0026 Buy X Get Y offer",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2ebbc8b520f25528dbc6c4906b5e8263/icon/CJWw-9mD-e8CEAE=.png",
"name": "EG Auto Add to Cart Free Gift",
"token": "gifter-cart-auto-include",
"platform": "shopify",
"vendor_name": "506",
"vendor_url": "https://apps.shopify.com/partners/fiftypoint6",
"vendor_email": "support@506.io",
"vendor_website": "https://506.io",
"vendor_address": "Thomas House, London, ENG, SW1V 1PX, GB",
"id": "1.gifter-cart-auto-include",
"created_at": "2019-12-02T00:00:00",
"plans": [
{
"name": "Standard",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Unlimited",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
}
],
"categories": [
"cart customization",
"discounts"
],
"integrates_with": [
"Checkout\n\n \n \n Cartix\n \n \n ReCharge"
],
"review_count": 709,
"installs": 9645,
"instp": 0.003727176118249445,
"installs_30d": 185,
"installs_90d": 613,
"reviews_30d": 23,
"reviews_90d": -9
},
{
"installed_at": "2023-05-17T13:51:54Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/google-shopping-feed",
"state": "Active",
"free_trial_duration": "504h0m0s",
"description": "Submits Product Feed for Google Shopping, Microsoft, Facebook \u0026 Pinterest. Manages PMAX Campaigns.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/02b5709becbcc8cb72e7853b282ccbec/icon/CLe36pCU6okDEAE=.png",
"name": "Simprosys Google Shopping Feed",
"token": "google-shopping-feed",
"platform": "shopify",
"vendor_name": "Simprosys InfoMedia",
"vendor_url": "https://apps.shopify.com/partners/simprosys",
"vendor_email": "support@simprosys.com",
"vendor_website": "https://simprosys.com",
"vendor_address": "B-303, Shapath Hexa, Opp Gujarat High Court, S. G. Highway, Ahmedabad, GJ, 380060, IN",
"id": "1.google-shopping-feed",
"created_at": "2017-08-16T00:00:00",
"plans": [
{
"name": "Up to 500 Products",
"monthly_cost": "$4.99/month",
"monthly_cost_cents": 499
},
{
"name": "501-1000 Products",
"monthly_cost": "$8.99/month",
"monthly_cost_cents": 899
},
{
"name": "1001-5000 Products",
"monthly_cost": "$13.99/month",
"monthly_cost_cents": 1399
},
{
"name": "5001-10000 Product",
"monthly_cost": "$17.99/month",
"monthly_cost_cents": 1798
}
],
"categories": [
"marketplaces",
"product feeds"
],
"integrates_with": [
"Checkout\n\n \n \n Google Merchant Center\n \n \n Google Ads Account\n \n \n Google Analytics 4 (GA4)\n \n \n Pinterest For Business\n \n \n Microsoft Advertising\n \n \n Meta Ads / Meta Business Suite"
],
"review_count": 3963,
"installs": 47759,
"instp": 0.01845580137184813,
"installs_30d": -1262,
"installs_90d": -3384,
"reviews_30d": 2,
"reviews_90d": -2695
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/instant-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize Your Store Sales \u0026 ROI with Search, Filters, Merchandising, and Personalization.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2fdf165bce6a41670dd95ec05375b66f/icon/CN_LrKrjy_4CEAE=.png",
"name": "Fast Simon AI Search \u0026 Filters",
"token": "instant-search",
"platform": "shopify",
"vendor_name": "Fast Simon",
"vendor_url": "https://apps.shopify.com/partners/fast-simon",
"vendor_email": "support@fastsimon.com",
"vendor_website": "https://www.fastsimon.com/",
"vendor_address": "5375 Beechwood Ln., Los Altos, CA, 94024, US",
"id": "1.instant-search",
"created_at": "2014-02-10T00:00:00",
"plans": [
{
"name": "FREE",
"monthly_cost": "Free"
},
{
"name": "STARTER",
"monthly_cost": "$39.99/month",
"monthly_cost_cents": 3999
},
{
"name": "ESSENTIAL",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Yotpo\n \n \n Langify\n \n \n Stamped.io\n \n \n TapCart\n \n \n Klaviyo\n \n \n Okendo"
],
"review_count": 362,
"installs": 2069,
"instp": 0.0007995362766882427,
"installs_30d": -15,
"installs_90d": -61,
"reviews_90d": -359
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "Grow smarter with automation and personalization for email marketing, sms, reviews, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5edd9000b933a8fa88c152d1e498531f/icon/CP6B2OOv3PYCEAE=.png",
"name": "Klaviyo: Email Marketing \u0026 SMS",
"token": "klaviyo-email-marketing",
"platform": "shopify",
"vendor_name": "Klaviyo",
"vendor_url": "https://apps.shopify.com/partners/klaviyo",
"vendor_email": "support@klaviyo.com",
"vendor_website": "https://www.klaviyo.com",
"vendor_address": "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 Recharge\n \n \n Aftership\n \n \n Typeform\n \n \n Meta Advertising\n \n \n Gorgias\n \n \n TikTok Advertising"
],
"review_count": 2447,
"installs": 364449,
"instp": 0.14083624770553568,
"installs_30d": 1440,
"installs_90d": 6038,
"reviews_30d": 65,
"reviews_90d": -907
},
{
"installed_at": "2021-10-28T18:27:49Z",
"average_rating": "4.9",
"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"
],
"review_count": 154,
"installs": 14442,
"instp": 0.005580910056999323,
"installs_30d": -49,
"installs_90d": -248,
"reviews_30d": -1,
"reviews_90d": -105
},
{
"installed_at": "2021-05-06T06:58:40Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/printful",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Create and sell custom products with print-on-demand dropshipping",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/3dd87416a3b1e12a9ef3604aaaaf4d1e/icon/CNDmhPSW_oQDEAE=.jpeg",
"name": "Printful: Print on Demand",
"token": "printful",
"platform": "shopify",
"vendor_name": "Printful",
"vendor_url": "https://apps.shopify.com/partners/jansons",
"vendor_email": "support@printful.com",
"vendor_website": "https://www.printful.com/",
"vendor_address": "11025 Westlake Dr, Charlotte, NC, 28273, US",
"id": "1.printful",
"created_at": "2013-11-25T00:00:00",
"plans": [
{
"name": "Free Plan",
"monthly_cost": "Free to install"
},
{
"name": "Growth Plan",
"monthly_cost": "$24.99/month",
"monthly_cost_cents": 2499
}
],
"categories": [
"dropshipping",
"print on demand (pod)"
],
"integrates_with": [
"Checkout\n\n \n \n eBay\n \n \n Etsy\n \n \n Amazon\n \n \n Storenvy"
],
"review_count": 2205,
"installs": 100698,
"instp": 0.03891334170611535,
"installs_30d": -1757,
"installs_90d": -4936,
"reviews_30d": -14,
"reviews_90d": -5191
},
{
"installed_at": "2022-03-29T17:07:04Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/product-filter-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Maximize sales with AI-powered search, custom product filters, and robust product discovery tools",
"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": "FREE",
"monthly_cost": "Free"
},
{
"name": "BASIC",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "ESSENTIAL",
"monthly_cost": "$239/month",
"monthly_cost_cents": 23900
},
{
"name": "PROFESSIONAL",
"monthly_cost": "$399/month",
"monthly_cost_cents": 39900
}
],
"categories": [
"search and filters",
"navigation and menus"
],
"integrates_with": [
"Checkout\n\n \n \n Wishlist Plus\n \n \n Weglot\n \n \n GemPages\n \n \n Currency Converter\n \n \n Product Labels\n \n \n Reviews apps"
],
"review_count": 1564,
"installs": 25154,
"instp": 0.00972041348661965,
"installs_30d": -168,
"installs_90d": 144,
"reviews_90d": -404
},
{
"installed_at": "2021-10-15T11:33:29Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/product-warnings",
"state": "Active",
"description": "Create warnings for P65, Pre-order, Shipping delays, Product availability, Announcements, etc.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/73f409bed64ad92de15f0b514e54ee38/icon/CJOWxaz0lu8CEAE=.png",
"name": "Warnify Pro Warnings",
"token": "product-warnings",
"platform": "shopify",
"vendor_name": "EC Apps Sp z o o",
"vendor_url": "https://apps.shopify.com/partners/elasticsoft",
"vendor_email": "help@elastic-soft.com",
"vendor_website": "https://elastic-soft.freshdesk.com",
"id": "1.product-warnings",
"created_at": "2017-04-06T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Unlimited",
"monthly_cost": "$9.95/month",
"monthly_cost_cents": 994
}
],
"categories": [
"legal",
"pop-ups"
],
"integrates_with": [
"Checkout"
],
"review_count": 246,
"installs": 3561,
"instp": 0.0013760989276398415,
"installs_30d": -31,
"installs_90d": -67,
"reviews_30d": -1
},
{
"installed_at": "2023-09-20T16:19:02Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/returngo",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Automate returns \u0026 exchanges with a branded self-service return portal for easy returns management.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9b4ed6054e48dbff51077265060d311f/icon/CKKshq-6s_ACEAE=.png",
"name": "ReturnGO Returns \u0026 Exchanges",
"token": "returngo",
"platform": "shopify",
"vendor_name": "ReturnGO",
"vendor_url": "https://apps.shopify.com/partners/returngo",
"vendor_email": "support@returngo.ai",
"vendor_website": "https://returngo.ai/",
"vendor_address": "Arieh Shenkar St 1,, Herzeliya, 4672501, IL",
"id": "1.returngo",
"created_at": "2020-09-14T00:00:00",
"plans": [
{
"name": "Return Guard",
"monthly_cost": "Free to install"
},
{
"name": "Starter",
"monthly_cost": "$23/month",
"monthly_cost_cents": 2300
},
{
"name": "Premium",
"monthly_cost": "$147/month",
"monthly_cost_cents": 14700
},
{
"name": "Pro",
"monthly_cost": "$297/month",
"monthly_cost_cents": 29700
}
],
"categories": [
"returns and exchanges",
"order tracking"
],
"integrates_with": [
"USPS\n \n \n Gorgias\n \n \n Canada Post\n \n \n Shippo\n \n \n Shipstation\n \n \n Sendcloud"
],
"review_count": 336,
"installs": 2531,
"instp": 0.0009780697517148102,
"installs_30d": 50,
"installs_90d": 215,
"reviews_30d": 7,
"reviews_90d": -30
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/shogun",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "Easy to use visual page editor to design blog posts, product pages, landing pages \u0026 theme sections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0ca2c1526ec07b9f52021bd42651b1fd/icon/CO2wi8_0-4IDEAE=.jpeg",
"name": "Shogun ‑ Landing Page Builder",
"token": "shogun",
"platform": "shopify",
"vendor_name": "Shogun Labs, Inc.",
"vendor_url": "https://apps.shopify.com/partners/shogun",
"vendor_email": "support@getshogun.com",
"vendor_website": "https://getshogun.com",
"vendor_address": "440 N. Barranca Ave, Covina, CA, 91723, US",
"id": "1.shogun",
"created_at": "2015-09-21T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$249/month",
"monthly_cost_cents": 24900
},
{
"name": "Advanced",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"page builder",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n Google Analytics\n \n \n Adobe Typekit\n \n \n YouTube\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Instagram"
],
"review_count": 2090,
"installs": 41129,
"instp": 0.015893730074388948,
"installs_30d": -755,
"installs_90d": -1593,
"reviews_30d": -4,
"reviews_90d": -1149
},
{
"installed_at": "2024-12-20T23:06:13Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/shopify-mobile-apps",
"state": "Active",
"free_trial_duration": "4800h0m0s",
"description": "Tapcart is more than a mobile app builder—it’s an extensive platform designed to scale your brand",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a228b831b4225be070d5a592528374db/icon/CKP--cqDk_YCEAE=.png",
"name": "Tapcart ‑ Mobile App Builder",
"token": "shopify-mobile-apps",
"platform": "shopify",
"vendor_name": "Tapcart",
"vendor_url": "https://apps.shopify.com/partners/tapcart",
"vendor_email": "help@tapcart.co",
"vendor_website": "https://tapcart.com",
"vendor_address": "1417 6th Street #200, Santa Monica, CA, 90401, US",
"id": "1.shopify-mobile-apps",
"created_at": "2017-04-11T00:00:00",
"plans": [
{
"name": "Tapcart Core",
"monthly_cost": "$250/month",
"monthly_cost_cents": 25000
},
{
"name": "Tapcart Ultimate",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
},
{
"name": "Tapcart Enterprise",
"monthly_cost": "$1,000/month",
"monthly_cost_cents": 100000
}
],
"categories": [
"mobile app builder"
],
"integrates_with": [
"ReCharge\n \n \n Yotpo\n \n \n Klaviyo\n \n \n Nosto\n \n \n Facebook SDK\n \n \n Foursixty"
],
"review_count": 338,
"installs": 2553,
"instp": 0.0009865713457636945,
"installs_30d": 1,
"installs_90d": 24,
"reviews_30d": 1,
"reviews_90d": 8
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/swym-relay",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost sales with an easy-to-set-up Wishlist for all customer touchpoints. Top integrations included.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d612f58ce0decfaba38849af3396fb5b/icon/CKKXmdzFx_MCEAE=.jpeg",
"name": "Swym Wishlist Plus",
"token": "swym-relay",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "http://getswym.com",
"vendor_address": "Seattle, WA, US",
"id": "1.swym-relay",
"created_at": "2016-07-29T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"wishlists",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Klaviyo - Yotpo - Mailchimp\n \n \n Postscript-Attentive-Twillio\n \n \n Tapcart - Stikky - PageFly\n \n \n Listrak - ReSci - DotDigital\n \n \n BlueCore-Bloomreach-Ometria\n \n \n Sailthru-Omnisend-Hubspot"
],
"review_count": 1438,
"installs": 49654,
"instp": 0.019188097768331563,
"installs_30d": 777,
"installs_90d": 2208,
"reviews_30d": 6,
"reviews_90d": -869
},
{
"installed_at": "2024-12-20T23:06:13Z",
"average_rating": "1",
"app_store_url": "https://apps.shopify.com/warnify-product-warnings",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Show important product warnings on your storefront.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/671d09f12969c33951ab7a5413af6b20/icon/CJC48qz0lu8CEAE=.png",
"name": "Warnify",
"token": "warnify-product-warnings",
"platform": "shopify",
"vendor_name": "Warnify",
"vendor_url": "https://apps.shopify.com/partners/warnify",
"vendor_email": "support@warnify.app",
"id": "1.warnify-product-warnings",
"created_at": "2020-07-23T00:00:00",
"categories": [
"pop-ups",
"badges and icons"
],
"review_count": 1,
"installs": 2342,
"instp": 0.0009050333301130326,
"installs_30d": 14,
"installs_90d": 16
},
{
"installed_at": "2020-11-15T14:07:31Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/watchlist",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Send Email/SMS alerts for back in stock products. Create preorder/restock lists to drive revenue.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9905a4c8f22cb4a3b0c32af55a58ec21/icon/CMuIhZLGx_MCEAE=.jpeg",
"name": "Swym Back in Stock Alerts",
"token": "watchlist",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "https://www.getswym.com/features/back-in-stock-product-alerts",
"vendor_address": "Seattle, WA, US",
"id": "1.watchlist",
"created_at": "2016-10-13T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"stock alerts",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Shopify Flow\n \n \n Klaviyo - Omnisend\n \n \n Sailthru - Listrak\n \n \n Bluecore - Bloomreach\n \n \n dotDigital - Optimizely\n \n \n Mailchimp - Ometria\n \n \n Twillio - Postscript"
],
"review_count": 474,
"installs": 23882,
"instp": 0.009228866776156893,
"installs_30d": 57,
"installs_90d": 293,
"reviews_90d": -191
},
{
"installed_at": "2022-12-09T17:44:38Z",
"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": 24351,
"instp": 0.00941010530383538,
"installs_30d": 286,
"installs_90d": 368
}
],
"categories": [
"/Arts \u0026 Entertainment/Comics \u0026 Animation/Cartoons",
"/Toys \u0026 Hobbies"
],
"technologies": [
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1610920
},
{
"installed_at": "2024-02-16T02:21: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": 2413207
},
{
"installed_at": "2023-10-31T23:57:24Z",
"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": 4723482
},
{
"installed_at": "2021-06-08T15:55:00Z",
"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": 3948429
},
{
"installed_at": "2020-11-25T11:52:34Z",
"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": 3000331
},
{
"installed_at": "2023-03-04T10:28:34Z",
"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": 4401345
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1471424
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 4239853
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Instant Search Plus",
"description": "Search \u0026 merchandising for fast growing online brands. Now called Fast Simon.",
"vendor_url": "https://www.instantsearchplus.com",
"icon_url": "https://storeleads.app/img/tech/instantsearchplus.png",
"categories": [
"Search"
],
"installs": 2704
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"vendor_url": "https://www.klaviyo.com/",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"categories": [
"Marketing Automation"
],
"installs": 459358
},
{
"installed_at": "2020-11-15T14:07:31Z",
"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": 1441181
},
{
"installed_at": "2021-05-06T06:58:40Z",
"name": "Printful",
"description": "Easy print-on-demand drop shipping and fulfillment warehouse services.",
"vendor_url": "https://www.printful.com",
"icon_url": "https://storeleads.app/img/tech/printful.png",
"categories": [
"Fulfillment"
],
"installs": 105483
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Shogun",
"description": "Build and optimize your pages with Shogun, the most powerful page building platform for eCommerce teams and agencies.",
"vendor_url": "http://getshogun.com",
"icon_url": "https://storeleads.app/img/tech/shogun.png",
"categories": [
"Page Builder"
],
"installs": 42142
},
{
"installed_at": "2021-01-23T10:11:15Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"vendor_url": "https://shop.app/what-shop-does",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"categories": [
"Payment Processor"
],
"installs": 1375755
},
{
"installed_at": "2024-08-10T05:00:09Z",
"name": "Shopify Collective",
"description": "Connect with your favorite brands to power product collaborations, curated marketplaces and everything in between—seamlessly inside Shopify.",
"vendor_url": "https://www.shopify.com/collective",
"icon_url": "https://storeleads.app/technologies/img/ShopifyCollective.png",
"categories": [
"Affiliate Marketing"
],
"installs": 7502
},
{
"installed_at": "2020-11-15T14:07:31Z",
"name": "Swym",
"description": "Over 19,000 merchants use Swym to create optimized shopping experiences.",
"vendor_url": "https://swym.it",
"icon_url": "https://storeleads.app/img/tech/swym.png",
"installs": 34578
},
{
"installed_at": "2024-12-20T23:06:13Z",
"name": "Tapcart",
"description": "Launch a mobile app for your Shopify store with no coding required.",
"vendor_url": "https://tapcart.com",
"icon_url": "https://storeleads.app/img/tech/tapcart.png",
"categories": [
"Mobile App Builder"
],
"installs": 2564
},
{
"installed_at": "2023-04-26T08:06:49Z",
"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": 1311652
},
{
"installed_at": "2023-04-26T08:06:49Z",
"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": 2146623
},
{
"installed_at": "2022-12-09T17:44:38Z",
"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": 233417
}
],
"collections": [
"erin-condren",
"hanamaruobake",
"hello-kitty",
"memo-pads",
"summer-vibes",
"sale-1",
"hello-kitty-and-friends-x-care-bears",
"pets",
"sanrio-gift-cards",
"blind-boxes",
"igloo",
"jazwares",
"my-sweet-piano",
"east-west",
"outerwear",
"all",
"tops",
"travel",
"bestsellers",
"stoney-clover-lane",
"gudetama",
"lesportsac",
"my-melody-kuromi",
"photo-albums",
"shoes",
"sunglasses",
"bags-and-accessories",
"charmmy-kitty",
"hair-accessories",
"toys",
"baggu",
"smartphone-charms",
"zipper-pouches",
"cogimyun",
"games-puzzles",
"hangyodon",
"lloromannic",
"calendars-planners",
"fender",
"kitchen",
"monkichi",
"sugarfina",
"tuxedosam",
"my-melody",
"keychains",
"rings",
"u-sa-ha-na",
"home-goods",
"kate-spade-new-york",
"stationery",
"sticky-notes",
"crossbody-bags",
"pochacco",
"hello-kitty-x-bruno-mars",
"bottoms",
"chococat",
"cushions",
"greeting-cards",
"keroppi",
"starface",
"deals-and-promos",
"dresses",
"earrings",
"jewelry",
"joyjolt",
"plush",
"studio-oh",
"sanrio-originals",
"cameras-film",
"cell-phone-cases-accessories",
"bag-charms",
"ballet-kitten-series",
"moon-oral-beauty",
"plush-mascot-keychain",
"bracelets",
"impressions-vanity",
"pekkle",
"tech-accessories",
"the-creme-shop",
"party-gift",
"games",
"girl-skateboards-x-sanrio",
"little-words-project",
"loungewear",
"mascots",
"new-arrivals-front",
"notebooks",
"apparel",
"beauty",
"cinnamoroll",
"handbags",
"kids-clothing-shoes",
"other-sanrio-characters",
"tote-bags",
"toys-games",
"kuromi",
"retrospekt",
"socks",
"storage",
"all-sanrio-characters",
"bath",
"building-sets",
"japanla",
"adorned-by-chi-x-hello-kitty",
"littletwinstars",
"my-melody-x-strawberry-shortcake",
"badtz-maru",
"necklaces",
"stickers",
"wallets",
"watches",
"letter-sets-envelopes",
"new",
"nintendo-switch",
"multi-character",
"pompompurin",
"sanrio-x-sonix",
"auto",
"backpacks",
"collaborations",
"crocs",
"hello-kitty-and-friends-x-anti-social-social-club",
"pens-pencils",
"hats",
"home",
"bags",
"cosmetic-bags",
"dumbgood",
"loungefly-x-hello-kitty-friends",
"puma",
"blankets-throws",
"collectibles"
],
"cluster_domains": [
"www.sanrio.com",
"www.sanrio.com.tw",
"sanrio.com.co",
"shop.baby.sanrio.co.jp",
"stg-shop.baby.sanrio.co.jp"
],
"features": [
"Wholesale/Retailers Page",
"Shopify Online Store 2.0",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Tracking or Returns",
"Returns Page",
"Store Locator Page",
"Has Blog"
],
"sales_channels": [
"Amazon"
],
"sales_channel_urls": {
"Amazon": "https://www.amazon.com/stores/page/A094FA37-0512-4406-9148-F6ADD7448E52"
},
"tags": [
"Dropshipper",
"Print on Demand"
],
"ships_to_countries": [
"Canada",
"Mexico",
"United States"
],
"rank_percentile": 0.001,
"collection_count": 321,
"rank": 139,
"latitude": 33.8358492,
"platform_rank_percentile": 0.0001,
"longitude": -118.3406288,
"estimated_page_views": 51649220,
"estimated_sales": 4884873776,
"estimated_sales_yearly": 58618485312,
"estimated_visits": 13341153,
"product_images": 18089,
"product_images_created_365": 10715,
"product_images_created_90": 1174,
"product_images_created_30": 297,
"employee_count": 148,
"cc_rank": 56683,
"cc_centrality": 7658,
"product_count": 3457,
"max_price": 68000,
"max_price_usd": 68000,
"max_weight": 67132,
"monthly_app_spend": 12796,
"min_price": 199,
"min_price_usd": 199,
"min_weight": 5,
"variant_count": 5880,
"vendor_count": 81,
"avg_price": 3320,
"avg_price_usd": 3320,
"avg_weight": 351,
"platform_rank": 2
}
]
}
List App Reviews for Domain
Retrieves a list of App reviews associated with a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Note that reviews are only available for Shopify apps.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.sanrio.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": "2025-06-21T00:00:00Z",
"body": "Easy to Use and Boosted Our Revenue!\n\nMarsello is fantastic! It's super easy to use, even for beginners. Setting up email campaigns and loyalty programs is a breeze. We've seen a significant boost in our revenue since we started using it. Highly recommend!",
"merchant_name": "East Coast Supplements",
"domains": [
{
"platform_domain": "east-coast-supplements-au.myshopify.com",
"name": "eastcoastsupplements.com.au",
"platform_rank": 275071
}
],
"rating": 5
}
]
}
List Domains
Returns a list of Domains. The request options documented below can be used to constrain the results to Domains matching a specific criteria. Without any options, this endpoint will list all Domains.
By default, 50 Domains are returned in a single request. The cursor request option can be used to paginate through results.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second (cursor=all is limited to 1 request/minute) |
Pro and Elite | 2 requests/second (cursor=all is limited to 1 request/minute) |
Request Options
Filters the results to Domains matching the Advanced Search.
The cursor request option is used to paginate through search results. Each response that has more results returns a next_cursor attribute. Pass this value to the cursor request option to retrieve the next page of results. When you reach the end of the results, the response will not include a cursor.
Note that the cursor value is only valid until the next weekly data update. An error will be returned if you obtain a cursor prior to a weekly data update and then attempt to use it after the weekly update.
Use cursor=all to retrieve all Domains matching the provided filters in a single request. This can also be done using the Export Domains endpoint (which is slightly faster) however you may prefer to use this endpoint so that all results are returned in a single JSON document.
When using cursor=all, results are generated asynchronously and the initial request will immediately return an HTTP 202 response. The client should poll the same url, approximately once every 5 seconds, until an HTTP 200 response is returned (along with results).
When an HTTP 202 response is returned, the response body may include keys indicating the progress of the export.
{ "progress": 10000, "total": 750000 }
When using cursor=all, responses are returned in the same format as all other requests to the "List Domains" endpoint. However, these responses can be quite large (often including data for million of domains). Since the default response format puts all data into a single JSON document, this can be challenging to parse. Unless you are using a streaming JSON parser, then all data in the response must fit into memory which may be challenging for development environments or smaller cloud instances. Add for=jsonl to the request options to change the output format to JSONL (which returns one JSON document per line) which is easier to parse.
Filters the results to Domains that have the given app installed. Apps are identified by combining the App platform and the App token (e.g., "shopify.messenger").
Multiple values must be comma-separated.
Filters the results to Domains that have reviewed the given app. Apps are identified by combining the App platform and the App token (e.g., "shopify.messenger"). Only available for Domains that have left reviews for a Shopify app.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:an request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given administrative_area_level_1. Must be used with the f:cc filter.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:administrative_area_level_1:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:administrative_area_level_1 request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that installed the given App identifier within time ranges specified by f:app_installed_at:min and f:app_installed_at:max (at least one of min and max must be provided).
The minimum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App before the provided maximum date (in f:app_installed_at:max). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
The maximum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App after the provided minimum date (in f:app_installed_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
Filters the results to Domains that uninstalled the given App identifier within time ranges specified by f:app_uninstalled_at:min and f:app_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App before the provided maximum date (in f:app_uninstalled_at:max). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
The maximum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App after the provided minimum date (in f:app_uninstalled_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
Filters the results to Domains that have average product price greater than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have average product price less than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have the given category.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:cat request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given country code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cc:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cc request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with a location in the given city. Must be used with the f:cc and f:administrative_area_level_1 filters.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:city:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:city request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created on or after the given time.
Filters the results to Domains that were created on or before the given time.
Filters the results to Domains that were created in the given month (identified using YYYY-MM format).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymm:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymm request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created in the given week (identified using YYYY-MM-DD format). Note that our data is updated weekly and the weekly creation date is always grouped to a Friday. If you query with a value that is not a Friday, we will automatically map the value provided to the previous Friday. (e.g., 2019-04-22 is be mapped to 2019-04-19).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymmdd:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymmdd request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains selling with the given currency code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:curr:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:curr request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given state.
Valid values are:
- Active
- Inactive
- Password Protected
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ds:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ds request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have employee count greater than or equal to the provided integer value.
Filters the results to Domains that have employee count less than or equal to the provided integer value.
Filters the results to Domains that have estimated monthly sales greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have estimated monthly sales less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have the given features enabled.
Valid values are:
- Brand Advocate Page
- Brands Page
- Contact Page
- Financing Page
- Free Returns
- Gift Messasging
- Has Android App
- Has iOS App
- International Shipping
- Public Company
- Returns Page
- Shopify POS
- Signature Required
- Store Locator Page
- Storefront API
- Tracking Page
- Tracking or Returns
- UPS Access Point
- Warranty Page
- Wholesale/Retailers Page
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:features request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters results based on Domain type. This is a boolean field. Use true to return only Domains using a platform domain name (e.g., merchant.myshopify.com). Use false to return only Domains using a custom domain (e.g., shop.merchant.com).
The boolean operation to apply to values provided in the f:ismy request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters results to Domains that have contact information of the given type(s).
Valid values are:
- facebookgroup
- phone
- snapchat
- youtube
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:it request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with content in the given language code. (e.g., "en")
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:lang:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:lang request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platform pricing plans on or after the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed ecommerce platform pricing plans on or before the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed from the provided ecommerce platform.
Valid values are:
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abicart
- alibabaminisite
- allvalue
- americommerce
- arcadina
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- beatstars
- bentobox
- bentoweb
- bigcartel
- bigcommerce
- bleez
- bookmanager
- booqable
- boutir
- bsale
- bwcommerce
- cafe24
- cartx
- ccvshop
- celerant
- centra
- cityhive
- cleverbridge
- cloov
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commercev3
- convertize
- corksy
- crystalcommerce
- cscart
- ctt
- cubecart
- custom
- cyberbiz
- dealerspike
- deliverybizpro
- demandware
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- eproshopping
- etsypattern
- f1
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- gomag
- graphy
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- kyte
- launchcart
- lazyshop
- lightfunnels
- lightspeed
- linx
- litium
- lizee
- lnwshop
- lojaintegrada
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- mesoigner
- microweber
- mijnwebwinkel
- miva
- moovin
- mshop
- musicglue
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nop
- norce
- novomind
- ochanoko
- ochre
- oddle
- odoo
- oemsaas
- opencart
- oracle
- ordable
- ordermygear
- orderport
- oro
- oscommerce
- owner
- oxid
- photoshelter
- pixels
- plenty
- podia
- popmenu
- prestashop
- printify
- prom
- qdm
- quickbutik
- rain
- remarkable
- rentmy
- repisuto
- ribbn
- saffire
- sage
- salla
- salonized
- samishop
- sana
- sap
- sapo
- satukz
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoprenter
- shoptet
- shoptille
- shopware
- shopwp
- shopx
- shopyan
- shopyy
- sirclo
- sitecore
- sitedish
- sitesmart
- sixshop
- smartetailing
- smartstore
- snipcart
- sodexo
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- starweb
- stoom
- storeberry
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- takedrop
- tamagotemonalab
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanube
- tiu
- tokotalk
- topline
- tornadostore
- tossdown
- townsendmusic
- tradift
- tray
- treet
- tsoft
- twicecommerce
- ueeshop
- ultracommerce
- unas
- unicart
- unilog
- vendre
- vepaar
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vtex
- w2repeat
- waca
- wbuy
- webflow
- webmercs
- weeblycommerce
- weedmaps
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wshop
- wuilt
- wx3
- xonic
- xshoppy
- yahoo
- yampi
- youcan
- zammit
- zencart
- zenler
- zid
- zohocommerce
- zupain
- zvendo
- zyda
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:last_platform request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platforms on or after the provided date.
Filters the results to Domains that changed ecommerce platforms on or before the provided date.
Filters results to Domains that are on the associated Lists.
Lists are identified by the ID of the List which can be found using one of the List endpoints.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:lids request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have monthly app spend greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have monthly app spend less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains whose most recently published product is equal to or after the provided date.
Filters the results to Domains whose most recently published product is equal to or before the provided date.
Filters the results to Domains that have given Magento major version.
Valid values are:
- 1
- 2
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mmv:op to "or" if you provide multiple values.
Consider using the f:mv request option if you need to filter on the full Magento version.
The boolean operation to apply to values provided in the f:mmv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have given Magento version.
Examples of valid values are:
- 1.7.0.2
- 2.3
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mv:op to "or" if you provide multiple values.
Consider using the f:mmv request option if you only need to filter on the Magento major version.
The boolean operation to apply to values provided in the f:mv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Pinterest followers.
Filters the results to Domains that have a maximum number of Pinterest followers.
Filters the results to Domains that have added at least the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains using the given pricing plan.
Examples of valid values are:
- Shopify Plus
- Professional
- Performance
- Premium
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:plan:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:plan request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are on the given ecommerce platform.
Valid values are:
- 29next
- 2cshop
- 3dcart
- 82cart
- 91app
- abicart
- alibabaminisite
- allvalue
- americommerce
- arcadina
- artstorefronts
- askas
- aspdotnetstorefront
- atg
- b2bstore
- bandcamp
- base
- basekit
- beatstars
- bentobox
- bentoweb
- bigcartel
- bigcommerce
- bleez
- bookmanager
- booqable
- boutir
- bsale
- bwcommerce
- cafe24
- cartx
- ccvshop
- celerant
- centra
- cityhive
- cleverbridge
- cloov
- coachannel
- coachy
- cococart
- codshopy
- colormeshop
- commentsold
- commerce7
- commercehq
- commercev3
- convertize
- corksy
- crystalcommerce
- cscart
- ctt
- cubecart
- custom
- cyberbiz
- dealerspike
- deliverybizpro
- demandware
- dividenl
- dooca
- dotpe
- dropify
- drupal
- dukaan
- dutchieplus
- e37
- easymyshop
- easyorders
- easystore
- ebisumart
- ecbeing
- eccube
- ecellar
- ecforce
- ecomz
- ecwid
- elevar
- empretienda
- epages
- eproshopping
- etsypattern
- f1
- fastcommerce
- fbits
- fenicio
- finqu
- fourthwall
- funnelish
- futureshop
- gambio
- getshoptoday
- godaddy
- goimagine
- gomag
- graphy
- grazecart
- gumroad
- haravan
- hcl
- ideasoft
- idosell
- ikas
- imweb
- inovarti
- instamojo
- intershop
- irp
- irroba
- isiore
- jet
- jetshop
- jouwweb
- jtl
- jumpseller
- kajabi
- kometia
- kudosrecords
- kyte
- launchcart
- lazyshop
- lightfunnels
- lightspeed
- linx
- litium
- lizee
- lnwshop
- lojaintegrada
- magazord
- magento
- makane
- makeshop
- makewebeasy
- matajer
- meepshop
- menufy
- mercado
- merchantpro
- meshop
- mesoigner
- microweber
- mijnwebwinkel
- miva
- moovin
- mshop
- musicglue
- neto
- netsuite
- networksolutions
- nexternal
- nhngodo
- ninjaos
- nop
- norce
- novomind
- ochanoko
- ochre
- oddle
- odoo
- oemsaas
- opencart
- oracle
- ordable
- ordermygear
- orderport
- oro
- oscommerce
- owner
- oxid
- photoshelter
- pixels
- plenty
- podia
- popmenu
- prestashop
- printify
- prom
- qdm
- quickbutik
- rain
- remarkable
- rentmy
- repisuto
- ribbn
- saffire
- sage
- salla
- salonized
- samishop
- sana
- sap
- sapo
- satukz
- scayle
- sellerscommerce
- sellfy
- sharetribe
- shopage
- shopbase
- shopcada
- shopdeck
- shoper
- shopexpress
- shopify
- shopkit
- shoplazza
- shopline
- shoplo
- shopmatic
- shoprenter
- shoptet
- shoptille
- shopware
- shopwp
- shopx
- shopyan
- shopyy
- sirclo
- sitecore
- sitedish
- sitesmart
- sixshop
- smartetailing
- smartstore
- snipcart
- sodexo
- spreadshop
- spreecommerce
- spring
- sprwt
- spryker
- square
- squarespace
- starweb
- stoom
- storeberry
- storehippo
- storeino
- storenvy
- storesjp
- sumup
- suredone
- swell
- t1paginas
- takeaway
- takedrop
- tamagotemonalab
- tapgoods
- teachable
- teechip
- thehutgroup
- theprintbar
- thinkific
- threadless
- ticimax
- tiendanube
- tiu
- tokotalk
- topline
- tornadostore
- tossdown
- townsendmusic
- tradift
- tray
- treet
- tsoft
- twicecommerce
- ueeshop
- ultracommerce
- unas
- unicart
- unilog
- vendre
- vepaar
- vinsuite
- virtuemart
- viskan
- visualsoft
- vnda
- volusion
- vtex
- w2repeat
- waca
- wbuy
- webflow
- webmercs
- weeblycommerce
- weedmaps
- wikinggruppen
- winedirect
- wix
- wizishop
- woocommerce
- workarea
- wshop
- wuilt
- wx3
- xonic
- xshoppy
- yahoo
- yampi
- youcan
- zammit
- zencart
- zenler
- zid
- zohocommerce
- zupain
- zvendo
- zyda
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have product count greater than or equal to the provided integer value.
Filters the results to Domains that have product count less than or equal to the provided integer value.
Filters the results to Domains that have platform rank greater than or equal to the provided integer value.
Filters the results to Domains that have platform rank less than or equal to the provided integer value.
Filters the results to Domains that have platform rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have platform rank percentile less than or equal to the provided float value.
Filters the results to Domains that have rank greater than or equal to the provided integer value.
Filters the results to Domains that have rank less than or equal to the provided integer value.
Filters the results to Domains that have rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have rank percentile less than or equal to the provided float value.
Filters the results to Domains that are in the given region (e.g., "Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:reg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:reg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are using the given Sales Channel.
Multiple values must be comma-separated.
Possible values:
- Abound
- Amazon
- Bulletin
- ChowNow
- DoorDash
- Ebay
- Etsy
- Faire
- GrubHub
- Handshake
- Mable
- Orderchamp
- Postmates
- Rentle
- Tundra
- Uber Eats
- ankorstore
The boolean operation to apply to values provided in the f:scs request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given subregion (e.g., "Northern Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:sreg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:sreg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that ships to the given country code (e.g., "CA").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:stcs:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:stcs request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given tags (e.g., "Print on Demand").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tags request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given technology installed (e.g., "Facebook Pixel").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tech request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that installed the given technology within time ranges specified by f:tech_installed_at:min and f:tech_installed_at:max (at least one of min and max must be provided).
The minimum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology before the provided maximum date (in f:tech_installed_at:max). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
The maximum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology after the provided minimum date (in f:tech_installed_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
Filters the results to Domains that uninstalled the given technology within time ranges specified by f:tech_uninstalled_at:min and f:tech_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology before the provided maximum date (in f:tech_uninstalled_at:max). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
The maximum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology after the provided minimum date (in f:tech_uninstalled_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).
Filters the results to Domains that are in the given top-level domain (e.g., "net").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tld:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tld request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme name.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tn:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tn request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme style.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ts:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ts request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains 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 (Asc) |
-avgpp,rank | Average Product Price (Desc) |
cfc,rank | Combined Followers (Asc) |
-cfc,rank | Combined Followers (Desc) |
cratyyyymmddnco,rank | Created (Asc) |
-cratyyyymmddnco,rank | Created (Desc) |
empc,rank | Employee Count (Asc) |
-empc,rank | Employee Count (Desc) |
epv,rank | Estimated Page Views (Asc) |
-epv,rank | Estimated Page Views (Desc) |
er,rank | Estimated Sales (Asc) |
-er,rank | Estimated Sales (Desc) |
ev,rank | Estimated Visits (Asc) |
-ev,rank | Estimated Visits (Desc) |
lplancat,rank | Last Plan Changed At (Asc) |
-lplancat,rank | Last Plan Changed At (Desc) |
maxpp,rank | Maximum Product Price (Asc) |
-maxpp,rank | Maximum Product Price (Desc) |
mnamef,rank | Merchant Name (Asc) |
-mnamef,rank | Merchant Name (Desc) |
mas,rank | Monthly App Spend (Asc) |
-mas,rank | Monthly App Spend (Desc) |
fc_6,rank | Pinterest Followers (Asc) |
-fc_6,rank | Pinterest Followers (Desc) |
fc30d_6,rank | Pinterest Followers Last 30 Days (Asc) |
-fc30d_6,rank | Pinterest Followers Last 30 Days (Desc) |
fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Asc) |
-fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Desc) |
prank,rank | Platform Rank (Asc) |
-prank,rank | Platform Rank (Desc) |
pc,rank | Product Count (Asc) |
-pc,rank | Product Count (Desc) |
pic,rank | Product Image Count (Asc) |
-pic,rank | Product Image Count (Desc) |
rank | Rank (Asc) |
-rank | Rank (Desc) |
tc,rank | Theme Cost (Asc) |
-tc,rank | Theme Cost (Desc) |
fc_10,rank | TikTok Followers (Asc) |
-fc_10,rank | TikTok Followers (Desc) |
fc30d_10,rank | TikTok Followers Last 30 Days (Asc) |
-fc30d_10,rank | TikTok Followers Last 30 Days (Desc) |
fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Asc) |
-fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Desc) |
dtpr,rank | TrustPilot Rating (Asc) |
-dtpr,rank | TrustPilot Rating (Desc) |
dtprc,rank | TrustPilot Reviews (Asc) |
-dtprc,rank | TrustPilot Reviews (Desc) |
fc_1,rank | Twitter Followers (Asc) |
-fc_1,rank | Twitter Followers (Desc) |
fc30d_1,rank | Twitter Followers Last 30 Days (Asc) |
-fc30d_1,rank | Twitter Followers Last 30 Days (Desc) |
fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Asc) |
-fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Desc) |
fc_8,rank | YouTube Followers (Asc) |
-fc_8,rank | YouTube Followers (Desc) |
fc30d_8,rank | YouTube Followers Last 30 Days (Asc) |
-fc30d_8,rank | YouTube Followers Last 30 Days (Desc) |
fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Asc) |
-fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Desc) |
Filters Domains based on a text query. e.g., a query for "vape" will return only Domains that matching the word "vape" in one of the following fields:
- Domain name (prefix match only)
- Domain top-level domain plus one (prefix match only)
- Domain aliases (prefix match only)
- Merchant name
- Home page title tag
- Home page meta description tag
- Home page meta keywords tag
- Technologies
- App names
- Location
- Social media account names
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain?f:cc=US&f:cratyyyymm=2018-11&page_size=2'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:cc":"US","f:cratyyyymm":"2018-11"}' 'https://storeleads.app/json/api/v1/all/domain'
Example Response
{
"domains": [
{
"trustpilot": {
"review_count": 3,
"avg_rating": 3.4
},
"cluster_best_ranked": "cava.com",
"last_updated_at": "2025-06-23T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"title": "Mediterranean Lunch, Order, \u0026 Pickup | CAVA",
"state": "Active",
"icon": "https://cava.com/favicon.ico",
"brand_advocate_page": "https://cava.com/locations/ambassador-caffery-la",
"career_page": "https://cava.com/careers",
"region": "Americas",
"language_code": "en",
"last_platform_change_at": "2024-05-21T00:00:00",
"platform": "custom",
"merchant_name": "CAVA",
"last_platform": "shopify",
"keywords": "cava app cava rewards cava menu cava popular items cava events cava cava locations cava catering cava online ordering cava opening cava order ahead cava pita cava restaurant locations cava restaurants cava spicy hummus cava take out cava to go cava delivery cava delivered get cava kava cava carry out cava order cava gluten free cava food cava greek food cava grill cava bowls cava grill order online cava group order cava mediterranean cava mezze cava near me cava mezze healthy fast casual healthy lunch spots mediterranean diet healthy places to eat healthy take out restaurants healthy fast food restaurants healthy fast food lunch healthy food to order out healthy lunch places healthy lunch ideas fast food healthy lunch takeaway mediterranean food mediterranean food near me",
"created_at": "2018-11-09T00:00:00",
"name": "cava.com",
"tld1": "cava.com",
"description": "Discover the mouthwatering flavors of Cava's Mediterranean-inspired cuisine. Enjoy fresh ingredients and bold flavors at our restaurant.",
"retailer_page": "https://cava.com/news/chandler-opening",
"contact_info": [
{
"description": "Welcome to our table. Delicious, flavor-packed food inspired by our Mediterranean roots",
"followers": 15000,
"posts": 24853,
"source": "/",
"type": "twitter",
"value": "https://twitter.com/cava"
},
{
"source": "/",
"type": "facebook",
"value": "https://facebook.com/cava"
},
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/cava"
},
{
"description": "Delicious, flavor-packed food inspired by our Mediterranean roots ☀️",
"followers": 143100,
"likes": 3300000,
"source": "/",
"type": "tiktok",
"value": "https://www.tiktok.com/@cava"
},
{
"source": "/news",
"type": "email",
"value": "media@cava.com"
},
{
"source": "/news",
"type": "phone",
"value": "202-800-8279"
},
{
"source": "/locations",
"type": "email",
"value": "houston@cava.com"
},
{
"type": "linkedin",
"value": "http://www.linkedin.com/company/cava-"
}
],
"aliases": [
"nationalpitaday.co"
],
"categories": [
"/Food \u0026 Drink"
],
"technologies": [
{
"installed_at": "2023-10-30T01:11:53Z",
"name": "Cloudflare",
"description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"categories": [
"CDN"
],
"installs": 4723482
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"vendor_url": "https://www.cloudflare.com",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"categories": [
"CDN"
],
"installs": 3948429
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Contentful",
"description": "Contentful is a modern content platform.",
"vendor_url": "https://www.contentful.com",
"icon_url": "https://storeleads.app/img/tech/contentful.png",
"categories": [
"CMS"
],
"installs": 5452
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"vendor_url": "https://www.facebook.com/business/learn/facebook-ads-pixel",
"icon_url": "https://storeleads.app/img/facebook.png",
"categories": [
"Analytics"
],
"installs": 3000331
},
{
"installed_at": "2025-06-16T15:44:13Z",
"name": "FullStory",
"description": "Solve problems, find answers, and fine-tune your customer experience with FullStory’s easy-to-use digital intelligence platform.",
"vendor_url": "https://www.fullstory.com",
"icon_url": "https://storeleads.app/img/tech/fullstory.png",
"categories": [
"Analytics"
],
"installs": 13659
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"vendor_url": "https://ads.google.com/",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"categories": [
"Analytics"
],
"installs": 3332234
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"vendor_url": "https://www.google.com/adsense/start",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"categories": [
"Advertising"
],
"installs": 4401345
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"vendor_url": "https://tagmanager.google.com/",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"categories": [
"Tag Manager"
],
"installs": 4239853
},
{
"installed_at": "2024-04-22T11:32:42Z",
"name": "Kustomer",
"description": "A customer service CRM platform built for today.",
"vendor_url": "https://www.kustomer.com",
"icon_url": "https://storeleads.app/img/tech/kustomer.png",
"categories": [
"Live Chat",
"Customer Support"
],
"installs": 1148
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "Next.js",
"description": "Next.js is a React framework often used on headless ecommmerce websites.",
"vendor_url": "https://nextjs.org/",
"icon_url": "https://storeleads.app/technologies/img/Next.js.png",
"installs": 78447
},
{
"installed_at": "2024-07-16T19:14:55Z",
"name": "Securiti",
"description": "Enabling Safe Use of Data \u0026 AI. Unified Intelligence \u0026 Controls Across Hybrid Multicloud.",
"vendor_url": "https://securiti.ai/",
"icon_url": "https://storeleads.app/technologies/img/Securiti.png",
"categories": [
"Compliance"
],
"installs": 198
},
{
"installed_at": "2024-07-23T03:53:23Z",
"name": "The Trade Desk",
"description": "The omnichannel advertising platform built for the open internet.",
"vendor_url": "https://www.thetradedesk.com",
"icon_url": "https://storeleads.app/img/tech/thetradedesk.png",
"installs": 6726
},
{
"installed_at": "2023-02-14T20:29:54Z",
"name": "TikTok Pixel",
"description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
"vendor_url": "https://www.tiktok.com/business/en",
"icon_url": "https://storeleads.app/img/tech/tiktok.png",
"categories": [
"Analytics"
],
"installs": 580323
},
{
"installed_at": "2023-06-06T14:43:32Z",
"name": "Uber Eats",
"description": "Order food to your door.",
"vendor_url": "https://www.ubereats.com",
"icon_url": "https://storeleads.app/img/tech/ubereats.png",
"installs": 7343
},
{
"installed_at": "2023-07-04T20:40:37Z",
"name": "Yext",
"description": "Deliver the right information at every stage of the customer journey.",
"vendor_url": "https://www.yext.com/",
"icon_url": "https://storeleads.app/img/tech/yext.png",
"installs": 233
}
],
"cluster_domains": [
"cava.com",
"www.cava.tn",
"www.cava.gr",
"www.cava.fi",
"www.cava.boutique",
"cava.com.co",
"www.cava.dk",
"www.cava.pa",
"cava.vn",
"www.cava.lima-city.de",
"cava.lima-city.de",
"cava.co.id",
"catering.cava.com"
],
"features": [
"Has iOS App",
"Has Android App",
"Wholesale/Retailers Page",
"Brand Advocate Page",
"Career Page",
"Headless",
"Has CMS"
],
"redirects_to": [
"cava.com"
],
"rank_percentile": 0.0025,
"rank": 361,
"platform_rank_percentile": 0.0134,
"estimated_page_views": 46289289,
"estimated_sales": 4377942893,
"estimated_sales_yearly": 52535314716,
"estimated_visits": 11956666,
"employee_count": 1192,
"cc_rank": 219545,
"cc_centrality": 74164,
"product_count": 295,
"platform_rank": 240
},
{
"theme": {
"name": "broadcast",
"style": "clean",
"vendor": "Presidio",
"version": "1.0",
"theme_store_id": 868,
"cost": 40000
},
"alternates": {
"en-gb": "www.thesak.co.uk",
"en-us": "www.thesak.com",
"x-default": "www.thesak.com"
},
"trustpilot": {
"review_count": 2,
"avg_rating": 3.3
},
"yotpo": {
"review_count": 66595,
"avg_rating": 4.7680607
},
"plan": "Shopify Plus",
"cluster_best_ranked": "www.thesak.com",
"city": "New York",
"last_updated_at": "2025-06-28T00:00:00",
"subregion": "Northern America",
"contact_page": "https://www.thesak.com/pages/contact-us",
"country_code": "US",
"currency_code": "USD",
"title": "Sustainable Crochet Bags, Crochet Clogs \u0026 Accessories | The Sak",
"administrative_area_level_1": "New York",
"state": "Active",
"icon": "https://www.thesak.com/cdn/shop/files/favicon-25.png?crop=center\u0026height=32\u0026v=1738960387\u0026width=32",
"brand_advocate_page": "https://www.thesak.com/pages/affiliate-partners",
"career_page": "https://www.thesak.com/pages/careers",
"region": "Americas",
"language_code": "en",
"tracking_page": "https://www.thesak.com/pages/international-shipping",
"platform_domain": "shop-the-sak.myshopify.com",
"last_plan_change_at": "2024-09-16T00:00:00",
"platform": "shopify",
"location": "New York, NY, USA",
"og_image": "https://www.thesak.com/cdn/shop/files/Logo-centered.png?v=1696957802",
"max_product_published_at": "2025-06-25T00:00:00",
"merchant_name": "The Sak",
"avg_price_formatted": "$94.84",
"created_at": "2018-11-16T00:00:00",
"name": "www.thesak.com",
"tld1": "thesak.com",
"description": "The Sak: Consciously Crafted, Sustainable Crochet Bags, Clogs, Sneakers \u0026 Accessories also available in leather. Up to 20% off when you sign up for email updates.",
"contact_info": [
{
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/thesakbrandgroup"
},
{
"source": "/",
"type": "instagram",
"value": "https://instagram.com/thesak"
},
{
"source": "/",
"type": "email",
"value": "customerservice@thesak.com"
},
{
"description": "Consciously crafted objects that invite touch. From our hands to yours. Certified B Corp.",
"followers": 8900,
"posts": 788,
"source": "/",
"type": "pinterest",
"value": "https://pinterest.com/thesak"
},
{
"followers": 1190,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/user/TheSakBags"
},
{
"source": "/pages/contact-us",
"type": "email",
"value": "press@thesak.com"
},
{
"source": "/pages/careers",
"type": "linkedin",
"value": "https://www.linkedin.com/company/the-sak"
}
],
"aliases": [
"www.thesak.mx"
],
"apps": [
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/aftersell",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Boost your AOV with AfterSell's post purchase upsell, thank you page editing \u0026 checkout upsells",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0a188ac0a2531baa73ee90cffa03529b/icon/CITjwvm8mIMDEAE=.png",
"name": "AfterSell Post Purchase Upsell",
"token": "aftersell",
"platform": "shopify",
"vendor_name": "AfterSell by Rokt",
"vendor_url": "https://apps.shopify.com/partners/beamcommerce",
"vendor_email": "support@aftersell.com",
"vendor_website": "https://aftersell.com/",
"vendor_address": "Beam Commerce Inc., 2700-1133 Melville St, Vancouver, BC, V6E4E5, CA",
"id": "1.aftersell",
"created_at": "2019-12-31T00:00:00",
"plans": [
{
"name": "DEVELOPMENT STORES",
"monthly_cost": "Free"
},
{
"name": "0-500 ORDERS",
"monthly_cost": "$34.99/month",
"monthly_cost_cents": 3499
},
{
"name": "501-1000 ORDERS",
"monthly_cost": "$54.99/month",
"monthly_cost_cents": 5499
},
{
"name": "1001-2000 ORDERS",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"upsell and cross-sell",
"checkout - other"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Nosto\n \n \n Stamped\n \n \n ReCharge\n \n \n UpCart\n \n \n Skio\n \n \n Social Snowball"
],
"review_count": 671,
"installs": 8736,
"instp": 0.003375905709593276,
"installs_30d": 747,
"installs_90d": 1692,
"reviews_30d": 6,
"reviews_90d": -335
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "3.6",
"app_store_url": "https://apps.shopify.com/algolia-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost your revenue with AI-powered search - increased conversions and maximized average order value.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/df5eea6375c938fb30ff095238fd154e/icon/CLmzsKjGjfsCEAE=.png",
"name": "Algolia AI Search \u0026 Discovery",
"token": "algolia-search",
"platform": "shopify",
"vendor_name": "Algolia",
"vendor_url": "https://apps.shopify.com/partners/algoliateam",
"vendor_email": "support+shop@algolia.com",
"vendor_website": "https://www.algolia.com/",
"vendor_address": "55 Rue d'Amsterdam, Paris, 75008, FR",
"id": "1.algolia-search",
"created_at": "2016-10-28T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "Free"
},
{
"name": "Grow",
"monthly_cost": "Free to install"
},
{
"name": "Premium",
"monthly_cost": "Free to install"
},
{
"name": "Elevate",
"monthly_cost": "Free to install"
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify Flow"
],
"review_count": 39,
"installs": 2641,
"instp": 0.001020577721959231,
"installs_30d": -20,
"installs_90d": 5,
"reviews_90d": -5
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/bm-country-ip-blocker",
"state": "Active",
"free_trial_duration": "168h0m0s",
"description": "Block unwanted visitors via email/name/phone, Block bot, Block country/city/IP, Block VPN/ISP/Refer",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/346ac3b38f0fce84cc1da8fbf5353667/icon/CO2DgqvErPgCEAE=.png",
"name": "BM: Country blocker IP blocker",
"token": "bm-country-ip-blocker",
"platform": "shopify",
"vendor_name": "Boostymark",
"vendor_url": "https://apps.shopify.com/partners/boostymark",
"vendor_email": "support@boostymark.com",
"id": "1.bm-country-ip-blocker",
"created_at": "2022-07-04T00:00:00",
"plans": [
{
"name": "PAY-AS-YOU-GO",
"monthly_cost": "Free to install"
},
{
"name": "PREMIUM",
"monthly_cost": "$3.99/month",
"monthly_cost_cents": 399
}
],
"categories": [
"fraud",
"geolocation"
],
"integrates_with": [
"Checkout\n\n \n \n Fraud Filter\n \n \n Visitor Analytics Report\n \n \n Block email/phone number/name\n \n \n Country blocker/IP blocker\n \n \n Checkout validation\n \n \n Crawler/VPN/ISP/Referrer Block"
],
"review_count": 118,
"installs": 3337,
"instp": 0.0012895372427784756,
"installs_30d": 132,
"installs_90d": 388,
"reviews_30d": 6,
"reviews_90d": -30
},
{
"installed_at": "2025-06-23T23:39:14Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/bundle-builder",
"state": "Active",
"free_trial_duration": "360h0m0s",
"description": "All-In-One Bundles: Bundle Builder, Box Builder, Build A Box, Gift Box Builder, Mix and Match Bundle",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/10b4272bede142b02924feec498b4009/icon/CIKXpbvQto0DEAE=.png",
"name": "EB | Easy Bundle Builder",
"token": "bundle-builder",
"platform": "shopify",
"vendor_name": "Skai Lama",
"vendor_url": "https://apps.shopify.com/partners/skai-lama",
"vendor_email": "sid@giftkart.app",
"vendor_website": "https://www.skailama.com",
"vendor_address": "Indore, MP, IN",
"id": "1.bundle-builder",
"created_at": "2022-09-15T00:00:00",
"plans": [
{
"name": "Development only",
"monthly_cost": "Free"
},
{
"name": "Essential Plan",
"monthly_cost": "$49/month",
"monthly_cost_cents": 4900
},
{
"name": "Plus Plan",
"monthly_cost": "$99/month",
"monthly_cost_cents": 9900
},
{
"name": "Enterprise Plan",
"monthly_cost": "$399/month",
"monthly_cost_cents": 39900
}
],
"categories": [
"product bundles",
"upsell and bundles - other"
],
"integrates_with": [
"Checkout\n\n \n \n Klaviyo\n \n \n All Side Cart Apps\n \n \n All subscription apps\n \n \n All 3PL\n \n \n Judge.me"
],
"review_count": 374,
"installs": 1208,
"instp": 0.00046681480050236694,
"installs_30d": 56,
"installs_90d": 197,
"reviews_30d": 15,
"reviews_90d": 14
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "3.8",
"app_store_url": "https://apps.shopify.com/checkout-blocks",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize your Thank you and Order status pages. Only Shopify Plus merchants can customize checkout.",
"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"
],
"review_count": 104,
"installs": 16448,
"instp": 0.006356100859820307,
"installs_30d": 536,
"installs_90d": 2835,
"reviews_30d": 10,
"reviews_90d": 21
},
{
"installed_at": "2018-12-03T01:14:53Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/findify-search",
"state": "Active",
"free_trial_duration": "24h0m0s",
"description": "Enterprise-grade search, merchandising, filters \u0026 personalization - made easy.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/2ce63c8f5058b312d359ff2bf9c9b6a4/icon/CInU-M_3rPYCEAE=.png",
"name": "Findify Search \u0026 Merchandise",
"token": "findify-search",
"platform": "shopify",
"vendor_name": "Findify",
"vendor_url": "https://apps.shopify.com/partners/findify",
"vendor_email": "yourfriends@findify.io",
"vendor_website": "https://findify.io",
"vendor_address": "c/o Convendum, Gävlegatan 16, Stockholm, 11330, SE",
"id": "1.findify-search",
"created_at": "2015-02-12T00:00:00",
"plans": [
{
"name": "Premium",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
},
{
"name": "Professional",
"monthly_cost": "$799/month",
"monthly_cost_cents": 79900
},
{
"name": "Enterprise",
"monthly_cost": "$1,399/month",
"monthly_cost_cents": 139900
}
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"integrates_with": [
"Shopify POS\n\n \n \n Yotpo\n \n \n Flow\n \n \n Reach\n \n \n Stamped\n \n \n Swym Wishlist\n \n \n Bold"
],
"review_count": 90,
"installs": 675,
"instp": 0.00026084436286349146,
"installs_30d": 2,
"installs_90d": -22,
"reviews_90d": -2
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "2.4",
"app_store_url": "https://apps.shopify.com/klarna-on-site-messaging",
"state": "Active",
"description": "Convert more sales with flexible and customized On-site Messaging about Klarna as a payment method.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/4439684aa13a71f0befb66b3a308e7d4/icon/CLWCxKPQuYwDEAE=.png",
"name": "Klarna On‑Site Messaging",
"token": "klarna-on-site-messaging",
"platform": "shopify",
"vendor_name": "Klarna",
"vendor_url": "https://apps.shopify.com/partners/klarna",
"vendor_email": "merchant@klarna.com",
"vendor_website": "https://docs.klarna.com/osm-app-integration",
"vendor_address": "800 N. High St., Suite 04-123, Columbus, OH, 43215, US",
"id": "1.klarna-on-site-messaging",
"created_at": "2019-06-10T00:00:00",
"categories": [
"banners",
"advertising - other"
],
"integrates_with": [
"Checkout"
],
"review_count": 122,
"installs": 187740,
"instp": 0.07254951212443242,
"installs_30d": -380,
"installs_90d": 6067,
"reviews_30d": -1,
"reviews_90d": -99
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
"state": "Active",
"description": "Grow smarter with automation and personalization for email marketing, sms, reviews, and more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5edd9000b933a8fa88c152d1e498531f/icon/CP6B2OOv3PYCEAE=.png",
"name": "Klaviyo: Email Marketing \u0026 SMS",
"token": "klaviyo-email-marketing",
"platform": "shopify",
"vendor_name": "Klaviyo",
"vendor_url": "https://apps.shopify.com/partners/klaviyo",
"vendor_email": "support@klaviyo.com",
"vendor_website": "https://www.klaviyo.com",
"vendor_address": "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 Recharge\n \n \n Aftership\n \n \n Typeform\n \n \n Meta Advertising\n \n \n Gorgias\n \n \n TikTok Advertising"
],
"review_count": 2447,
"installs": 364449,
"instp": 0.14083624770553568,
"installs_30d": 1440,
"installs_90d": 6038,
"reviews_30d": 65,
"reviews_90d": -907
},
{
"installed_at": "2025-02-06T02:24:29Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/postscript-sms-marketing",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Create and execute SMS programs to drive incremental revenue by engaging customers via text message",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/54fb9eb4e59e94fa0e3b1b173de78ca4/icon/CPDanN66poUDEAE=.jpeg",
"name": "Postscript SMS Marketing",
"token": "postscript-sms-marketing",
"platform": "shopify",
"vendor_name": "Postscript",
"vendor_url": "https://apps.shopify.com/partners/stodge-inc",
"vendor_email": "support@postscript.io",
"vendor_website": "https://postscript.io",
"vendor_address": "8136 East Sheridan Street, Phoenix, AZ, 85257, US",
"id": "1.postscript-sms-marketing",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "Free to install"
},
{
"name": "Growth",
"monthly_cost": "$100/month",
"monthly_cost_cents": 10000
},
{
"name": "Professional",
"monthly_cost": "$500/month",
"monthly_cost_cents": 50000
}
],
"categories": [
"abandoned cart",
"sms marketing"
],
"integrates_with": [
"Checkout\n\n \n \n Customer accounts\n\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Zapier\n \n \n Privy\n \n \n Sumo\n \n \n and more"
],
"review_count": 1285,
"installs": 21262,
"instp": 0.008216404212153415,
"installs_30d": -167,
"installs_90d": -189,
"reviews_30d": -16,
"reviews_90d": -687
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/product-upsell",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Upsells \u0026 Cross-Sells w/ AI SMART Offers! Product \u0026 Cart Pages, Upsell In + After Checkout \u0026 Email!",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/ad48625f75f509b7fec5de894a62d003/icon/CMm2js3guPsCEAE=.jpeg",
"name": "BOLD Upsell AI Smart Upselling",
"token": "product-upsell",
"platform": "shopify",
"vendor_name": "BOLD",
"vendor_url": "https://apps.shopify.com/partners/bold",
"vendor_email": "support@boldcommerce.com",
"vendor_website": "https://boldcommerce.com/",
"vendor_address": "200 - 1460 Chevrier Blvd., Winnipeg, MB, R3T 1Y6, CA",
"id": "1.product-upsell",
"created_at": "2012-04-17T00:00:00",
"plans": [
{
"name": "FREE PRO PLAN",
"monthly_cost": "Free to install"
},
{
"name": "PRO 200",
"monthly_cost": "$9.99/month",
"monthly_cost_cents": 999
},
{
"name": "PRO 1000",
"monthly_cost": "$24.99/month",
"monthly_cost_cents": 2499
},
{
"name": "PRO 5000",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
}
],
"categories": [
"upsell and cross-sell",
"cart customization"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify POS\n\n \n \n Google Analytics\n \n \n Bold Discounts\n \n \n Video Greet\n \n \n Bold Subscriptions"
],
"review_count": 720,
"installs": 11256,
"instp": 0.004349724664283644,
"installs_30d": -249,
"installs_90d": -713,
"reviews_30d": -1,
"reviews_90d": -861
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/rapid-insite",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Your site should do one thing: drive conversions. Yottaa makes sure it does.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/414b1ea602409212c339e1dec27fd0a1/icon/CI3cqIzirIgDEAE=.png",
"name": "Yottaa Insights",
"token": "rapid-insite",
"platform": "shopify",
"vendor_name": "Yottaa",
"vendor_url": "https://apps.shopify.com/partners/yottaa2",
"vendor_email": "merchantsupport@yottaa.com",
"vendor_website": "https://www.yottaa.com/",
"vendor_address": "333 Wyman Street, Suite 200, Waltham, MA, 02451, US",
"id": "1.rapid-insite",
"created_at": "2020-01-31T00:00:00",
"plans": [
{
"name": "Yottaa Insights",
"monthly_cost": "Free"
},
{
"name": "Optimize Add-on",
"monthly_cost": "$300/month",
"monthly_cost_cents": 30000
}
],
"categories": [
"seo",
"site optimization - other"
],
"review_count": 5,
"installs": 661,
"instp": 0.0002554342575596561,
"installs_30d": -20,
"installs_90d": -43
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/shogun",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "Easy to use visual page editor to design blog posts, product pages, landing pages \u0026 theme sections",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/0ca2c1526ec07b9f52021bd42651b1fd/icon/CO2wi8_0-4IDEAE=.jpeg",
"name": "Shogun ‑ Landing Page Builder",
"token": "shogun",
"platform": "shopify",
"vendor_name": "Shogun Labs, Inc.",
"vendor_url": "https://apps.shopify.com/partners/shogun",
"vendor_email": "support@getshogun.com",
"vendor_website": "https://getshogun.com",
"vendor_address": "440 N. Barranca Ave, Covina, CA, 91723, US",
"id": "1.shogun",
"created_at": "2015-09-21T00:00:00",
"plans": [
{
"name": "Build",
"monthly_cost": "$39/month",
"monthly_cost_cents": 3900
},
{
"name": "Grow",
"monthly_cost": "$249/month",
"monthly_cost_cents": 24900
},
{
"name": "Advanced",
"monthly_cost": "$499/month",
"monthly_cost_cents": 49900
}
],
"categories": [
"page builder",
"upsell and cross-sell"
],
"integrates_with": [
"Checkout\n\n \n \n Google Analytics\n \n \n Adobe Typekit\n \n \n YouTube\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Instagram"
],
"review_count": 2090,
"installs": 41129,
"instp": 0.015893730074388948,
"installs_30d": -755,
"installs_90d": -1593,
"reviews_30d": -4,
"reviews_90d": -1149
},
{
"installed_at": "2019-01-24T19:37:09Z",
"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": "400 Lafayette St, Yotpo Ltd, New York, NY, 10003, US",
"id": "1.swell",
"created_at": "2015-07-28T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Pro",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
},
{
"name": "Premium",
"monthly_cost": "$799/month",
"monthly_cost_cents": 79900
}
],
"categories": [
"loyalty and rewards"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Yotpo\n \n \n Klaviyo\n \n \n ReCharge\n \n \n Gorgias\n \n \n 2048 Variants"
],
"review_count": 885,
"installs": 12804,
"instp": 0.004947927736450584,
"installs_30d": -114,
"installs_90d": -324,
"reviews_30d": 2,
"reviews_90d": -1734
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/swym-relay",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost sales with an easy-to-set-up Wishlist for all customer touchpoints. Top integrations included.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d612f58ce0decfaba38849af3396fb5b/icon/CKKXmdzFx_MCEAE=.jpeg",
"name": "Swym Wishlist Plus",
"token": "swym-relay",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "http://getswym.com",
"vendor_address": "Seattle, WA, US",
"id": "1.swym-relay",
"created_at": "2016-07-29T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"wishlists",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Klaviyo - Yotpo - Mailchimp\n \n \n Postscript-Attentive-Twillio\n \n \n Tapcart - Stikky - PageFly\n \n \n Listrak - ReSci - DotDigital\n \n \n BlueCore-Bloomreach-Ometria\n \n \n Sailthru-Omnisend-Hubspot"
],
"review_count": 1438,
"installs": 49654,
"instp": 0.019188097768331563,
"installs_30d": 777,
"installs_90d": 2208,
"reviews_30d": 6,
"reviews_90d": -869
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/watchlist",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Send Email/SMS alerts for back in stock products. Create preorder/restock lists to drive revenue.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9905a4c8f22cb4a3b0c32af55a58ec21/icon/CMuIhZLGx_MCEAE=.jpeg",
"name": "Swym Back in Stock Alerts",
"token": "watchlist",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_url": "https://apps.shopify.com/partners/developer-ca6a967f09890f68",
"vendor_email": "support@swymcorp.com",
"vendor_website": "https://www.getswym.com/features/back-in-stock-product-alerts",
"vendor_address": "Seattle, WA, US",
"id": "1.watchlist",
"created_at": "2016-10-13T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$19.99/month",
"monthly_cost_cents": 1998
},
{
"name": "Pro",
"monthly_cost": "$59.99/month",
"monthly_cost_cents": 5999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"stock alerts",
"email marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Shopify Flow\n \n \n Klaviyo - Omnisend\n \n \n Sailthru - Listrak\n \n \n Bluecore - Bloomreach\n \n \n dotDigital - Optimizely\n \n \n Mailchimp - Ometria\n \n \n Twillio - Postscript"
],
"review_count": 474,
"installs": 23882,
"instp": 0.009228866776156893,
"installs_30d": 57,
"installs_90d": 293,
"reviews_90d": -191
},
{
"installed_at": "2024-09-16T20:37:15Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/yotpo-email-marketing-and-sms",
"state": "Active",
"description": "Boost engagement and drive more revenue with targeted email marketing and SMS.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a68804021383da136b6c1d18e7806937/icon/CPfq5vbfiocDEAE=.png",
"name": "Yotpo: Email Marketing \u0026 SMS",
"token": "yotpo-email-marketing-and-sms",
"platform": "shopify",
"vendor_name": "Yotpo - Email \u0026 SMS",
"vendor_url": "https://apps.shopify.com/partners/isenselabs",
"vendor_email": "support@yotpo.com",
"vendor_website": "https://smsbump.com/?utm_content=sms",
"vendor_address": "Office X, 51 Cherni vrah Blvd, Sofia, 1407, BG",
"id": "1.yotpo-email-marketing-and-sms",
"created_at": "2015-10-13T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "Starter",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Pro",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "Premium",
"monthly_cost": "$199/month",
"monthly_cost_cents": 19900
}
],
"categories": [
"email marketing",
"sms marketing"
],
"integrates_with": [
"Shopify POS\n\n \n \n Checkout\n\n \n \n Shopify Flow\n \n \n ReCharge\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Privy\n \n \n ReConvert\n \n \n Recart"
],
"review_count": 3053,
"installs": 40003,
"instp": 0.015458603033523331,
"installs_30d": -594,
"installs_90d": 194,
"reviews_30d": -79,
"reviews_90d": -5304
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": "233 Spring St, New York, NY, 10003, 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"
],
"integrates_with": [
"Checkout\n\n \n \n Shopify Flow\n \n \n Facebook\n \n \n Instagram\n \n \n Google\n \n \n Klaviyo\n \n \n SMSBump\n \n \n pagefly"
],
"review_count": 4841,
"installs": 39771,
"instp": 0.015368949859916915,
"installs_30d": -482,
"installs_90d": -858,
"reviews_30d": -36,
"reviews_90d": -2303
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 24351,
"instp": 0.00941010530383538,
"installs_30d": 286,
"installs_90d": 368
}
],
"categories": [
"/Apparel"
],
"technologies": [
{
"installed_at": "2025-01-08T01:58:49Z",
"name": "AddShoppers",
"description": "AddShoppers was established in 2011 to create and acquire digital assets that save shoppers time and money.",
"vendor_url": "https://www.addshoppers.com/",
"icon_url": "https://storeleads.app/technologies/img/AddShoppers.png",
"installs": 1992
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 477175
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Algolia",
"description": "Driving 50% higher conversion rate with omnichannel, personalized search.",
"vendor_url": "https://www.algolia.com",
"icon_url": "https://storeleads.app/img/tech/algolia.png",
"categories": [
"Search"
],
"installs": 15748
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 1610920
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 2413207
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 153406
},
{
"installed_at": "2024-09-24T01:40:21Z",
"name": "CJ Affiliate",
"description": "CJ Affiliate, formerly Commission Junction, is an affiliate marketing network.",
"vendor_url": "https://www.cj.com",
"icon_url": "https://storeleads.app/img/tech/cj.png",
"categories": [
"Affiliate Marketing"
],
"installs": 5155
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 4723482
},
{
"installed_at": "2021-06-08T15:44:45Z",
"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": 3948429
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Creator by zmags",
"description": "Turbocharge online revenue by transforming static and conventional content into digital experiences. Now known as Fastr.",
"vendor_url": "https://www.creatorbyzmags.com",
"icon_url": "https://storeleads.app/img/tech/creatorbyzmags.png",
"categories": [
"CMS"
],
"installs": 257
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 3000331
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Findify",
"description": "Sell more with the next generation of personalized ecommerce search and product discovery.",
"vendor_url": "https://www.findify.io",
"icon_url": "https://storeleads.app/img/tech/findify.png",
"categories": [
"Search",
"Personalisation"
],
"installs": 958
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 3332234
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 4401345
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 3026488
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Google Analytics 4",
"description": "Google Analytics 4 is the new version of Google Analytics that replaces Universal Analytics.",
"vendor_url": "https://analytics.google.com",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"categories": [
"Analytics"
],
"installs": 1926002
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 1471424
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 4239853
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Klarna",
"description": "Shop at your favorite stores today and experience the freedom to pay later with Klarna.",
"vendor_url": "https://www.klarna.com",
"icon_url": "https://storeleads.app/img/tech/klarna.png",
"categories": [
"Payment Processor",
"Financing"
],
"installs": 245406
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 459358
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Line",
"description": "More than just a messenger app. LINE is new level of communication and the very infrastructure of your life.",
"vendor_url": "https://line.me",
"icon_url": "https://storeleads.app/img/tech/line.png",
"installs": 90790
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 1441181
},
{
"installed_at": "2024-10-21T07:10:20Z",
"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": 424802
},
{
"installed_at": "2025-02-06T02:24:29Z",
"name": "Postscript",
"description": "Postscript helps you build strong customer relationships across the entire buying experience.",
"vendor_url": "https://postscript.io",
"icon_url": "https://storeleads.app/technologies/img/Postscript.png",
"categories": [
"SMS"
],
"installs": 21276
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "ReturnLogic",
"description": "Reinvent your store's post-purchase workflow with hassle free returns, one-click returns management, and powerful business analytics.",
"vendor_url": "https://www.returnlogic.com",
"icon_url": "https://storeleads.app/img/tech/returnlogic.png",
"categories": [
"Return Management"
],
"installs": 188
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Shogun",
"description": "Build and optimize your pages with Shogun, the most powerful page building platform for eCommerce teams and agencies.",
"vendor_url": "http://getshogun.com",
"icon_url": "https://storeleads.app/img/tech/shogun.png",
"categories": [
"Page Builder"
],
"installs": 42142
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"vendor_url": "https://shop.app/what-shop-does",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"categories": [
"Payment Processor"
],
"installs": 1375755
},
{
"installed_at": "2024-09-28T03:48:58Z",
"name": "Shopify Collective",
"description": "Connect with your favorite brands to power product collaborations, curated marketplaces and everything in between—seamlessly inside Shopify.",
"vendor_url": "https://www.shopify.com/collective",
"icon_url": "https://storeleads.app/technologies/img/ShopifyCollective.png",
"categories": [
"Affiliate Marketing"
],
"installs": 7502
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 13004
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Swym",
"description": "Over 19,000 merchants use Swym to create optimized shopping experiences.",
"vendor_url": "https://swym.it",
"icon_url": "https://storeleads.app/img/tech/swym.png",
"installs": 34578
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 580323
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "UpSellit",
"description": "Turn window shoppers into lifelong customers.",
"vendor_url": "https://us.upsellit.com",
"icon_url": "https://storeleads.app/img/tech/upsellit.png",
"installs": 1994
},
{
"installed_at": "2024-09-24T01:40:21Z",
"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": 1311652
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 53509
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "Yottaa",
"description": "YOTTAA’s acceleration solutions optimize over 1,500 eCommerce sites to significantly improve performance, resulting in higher conversions and more engaging shopper experiences.",
"vendor_url": "https://www.yottaa.com",
"icon_url": "https://storeleads.app/img/tech/yottaa.png",
"installs": 1080
},
{
"installed_at": "2024-10-10T01:49:16Z",
"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": 2146623
},
{
"installed_at": "2024-09-16T20:37:15Z",
"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": 233417
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "ownerIQ",
"description": "The leading retail and brand solution for attribution, data management and monetization, digital advertising.",
"vendor_url": "https://www.owneriq.com",
"icon_url": "https://storeleads.app/img/tech/owneriq.png",
"installs": 1017
},
{
"installed_at": "2024-09-16T20:37:15Z",
"name": "smsbump",
"description": "smsbump is an enterprise grade SMS platform designed for eCommerce businesses. Now known as \"Yotpo Email Marketing \u0026 SMS\" after an acquisition in January 2020.",
"vendor_url": "https://smsbump.com",
"icon_url": "https://storeleads.app/img/tech/smsbump.png",
"categories": [
"SMS"
],
"installs": 40916
}
],
"collections": [
"sak-best-sellers",
"sak-buckets",
"sak-all-bags",
"sak-all-materials",
"sak-backpacks",
"sak-bolinas-clogs",
"sak-leather",
"sak-smartphone-bags",
"sak-wallets-wristlets",
"sak-essential-pouches",
"sak-hand-crochet",
"all",
"sak-apparel",
"sak-bundles",
"sak-new-arrivals",
"lanie-market-tote",
"sak-cayenne-lagoon",
"sak-the-summer-shop",
"sak-totes",
"sak-yarnicharmz",
"120-hobo",
"sak-crossbodies",
"sak-mendocino-collection",
"sak-mystery-boxes",
"sak-personalize-your-bag",
"sak-sandals",
"sak-the-los-feliz-full-collection",
"the-sakroots-collection",
"sak-all-accessories",
"sak-bolinas-crochet-clogs-kids",
"sak-fall-collection",
"sak-resak",
"sak-sale",
"sak-travel-bags",
"sak-oceana-collection",
"sak-boots",
"sak-back-to-bali",
"sak-jewelry",
"sak-mini-bags",
"sak-suede-collection",
"sak-the-shoe-shop"
],
"cluster_domains": [
"www.thesak.com",
"www.thesak.co.uk"
],
"features": [
"International Shipping",
"Shopify Online Store 2.0",
"3D Models",
"Free Returns",
"New Shopify Checkout (2022)",
"Cryptocurrency Messaging",
"Accepts Gift Cards",
"Contact Page",
"Tracking or Returns",
"Tracking Page",
"Gift Messaging",
"Brand Advocate Page",
"Has Blog",
"Career Page",
"Has CMS"
],
"shipping_carriers": [
"USPS",
"Canada Post",
"Correos",
"Fedex"
],
"redirects_to": [
"sakroots.com",
"www.sakroots.com"
],
"ships_to_countries": [
"International"
],
"rank_percentile": 0.003,
"collection_count": 332,
"rank": 418,
"latitude": 40.7127753,
"platform_rank_percentile": 0.0031,
"longitude": -74.0059728,
"estimated_page_views": 4796749,
"estimated_sales": 453666413,
"estimated_sales_yearly": 5443996956,
"estimated_visits": 1239015,
"product_images": 14292,
"product_images_created_365": 8052,
"product_images_created_90": 4994,
"product_images_created_30": 324,
"employee_count": 85,
"cc_rank": 142365,
"cc_centrality": 292393,
"product_count": 948,
"max_price": 22900,
"max_price_usd": 22900,
"max_weight": 3207,
"monthly_app_spend": 59300,
"min_price": 100,
"min_price_usd": 100,
"min_weight": 5,
"variant_count": 5392,
"vendor_count": 1,
"avg_price": 9484,
"avg_price_usd": 9484,
"avg_weight": 422,
"platform_rank": 100
}
],
"has_next_page": true,
"next_cursor": "5b22205c7530303031403d5c625c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c2234323236363033225d",
"total": 14032
}
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": 252
},
{
"state": "Active",
"name": "uk.gymshark.com",
"rank": 11880006
},
{
"state": "Active",
"name": "de.gymshark.com",
"rank": 11880813
},
{
"state": "Active",
"name": "ca.gymshark.com",
"rank": 11880839
},
{
"state": "Active",
"name": "fr.gymshark.com",
"rank": 11880867
}
]
}
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": 252
},
{
"state": "Active",
"language_code": "en",
"name": "uk.gymshark.com",
"rank": 11880006
},
{
"state": "Active",
"language_code": "de",
"name": "de.gymshark.com",
"rank": 11880813
},
{
"state": "Active",
"language_code": "en",
"name": "ca.gymshark.com",
"rank": 11880839
},
{
"state": "Active",
"language_code": "fr",
"name": "fr.gymshark.com",
"rank": 11880867
},
{
"state": "Active",
"language_code": "nl",
"name": "nl.gymshark.com",
"rank": 11880978
},
{
"state": "Active",
"language_code": "en",
"name": "row.gymshark.com",
"rank": 11881065
},
{
"state": "Active",
"language_code": "en",
"name": "eu.gymshark.com",
"rank": 11881098
},
{
"state": "Active",
"language_code": "en",
"name": "au.gymshark.com",
"rank": 11882537
},
{
"state": "Active",
"language_code": "en",
"name": "se.gymshark.com",
"rank": 11889622
},
{
"state": "Active",
"language_code": "en",
"name": "no.gymshark.com",
"rank": 11893311
},
{
"state": "Active",
"language_code": "en",
"name": "dk.gymshark.com",
"rank": 11893578
},
{
"state": "Active",
"language_code": "en",
"name": "fi.gymshark.com",
"rank": 11914875
},
{
"state": "Active",
"language_code": "en",
"name": "ie.gymshark.com",
"rank": 11919582
},
{
"state": "Active",
"language_code": "de",
"name": "ch.gymshark.com",
"rank": 11930540
},
{
"state": "Redirects",
"name": "de-en.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "m.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "www.uk.gymshark.com",
"rank": 17499999
},
{
"state": "Redirects",
"name": "gymshark.com",
"rank": 17499999
},
{
"state": "Duplicate",
"language_code": "en",
"name": "dk.shop.gymshark.com",
"rank": 17499999
}
]
}
Export Domains
Returns all Domains matching the request options. Unlike List Domains, this endpoint does not paginate, instead it returns all Domains matching the query in a single response.
Note: This endpoint is deprecated and usage is not encouraged. Instead, we suggest:
- Using a workflow to distribute data to S3 or GCS.
- You may use the cursor request option of the List Domains endpoint (by passing cursor=all) to return all Domains matching a query. When using cursor=all, we suggest also setting for=jsonl to retrieve data in JSONL format.
Plan | Rate Limit |
---|---|
All plans | 1 request/minute |
Request Options
Supports the same request options as List Domains.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain-export?f:p=shopify&f:cc=US&f:cratyyyymm=2018-11'
Export requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"f:cc":"US","f:cratyyyymm":"2018-11","f:p":"shopify"}' 'https://storeleads.app/json/api/v1/all/domain-export'
Example Response
The export endpoint streams the response as results are generated. Each line is a separate JSON document so be sure to parse the response one line at a time. The resulting domains are grouped into "chunks" which can arrived out-of-order. Each chunk includes an ordinal so that out-of-order results can be sorted if order is significant to your use case.
The first JSON document in the response contains meta information describing the response. It includes the following attributes:
Subsequent documents contain the chunk ordinal and a list of domains within the chunk.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "chunk": 1, "domains": [ {"name": "lidetailers.com", ... } ] }
Error Handling
Since the export endpoint is streamed, we cannot set the HTTP status code (which is set in the HTTP headers at the beginning on the response) when an error occurs in the middle of the stream. As a result, clients need additional error checking when using the export endpoint.
If an error occurs in the middle of a stream, a JSON document describing that error is written to the stream.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "error": "error description" }
Clients should always verify that the response contained the expected number of chunks (by comparing the number of chunks received against the expected_chunks value in the meta JSON document).
Best Practices
Networks are unreliable and connections often timeout if left open too long. To minimize the likelihood of networking errors, we suggest downloading the results of the export endpoint as quickly as possible. This means that you should do minimal processing of the results until the entire response has been read allowing the TCP connection to close. Depending on the RAM available on your servers and the number of domains that you are retrieving, you may be able to read the entire response into memory. If that is not an option, consider writing the response to a temporary file on disk instead. Then, run whatever processing is necessary on the persisted results.
Historical Domain Data
The Store Leads database only includes information for stores that are currently live. If a store was created in early 2020 but no longer exists, then it is not included in the main Store Leads database. However, there are a variety of use cases that need historical data. We have been archiving our weekly updates since early 2019 and they are available for download to accounts on our Enterprise Plan.
List Historical Domain Labels
Returns a list of labels identifying the weekly historical domain data. The label is used to download a specific weekly archive.
Plan | Rate Limit |
---|---|
Enterprise | 20 requests/second |
Pro and Elite | 5 requests/second |
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/historical/domain'
Example Response
{
"labels": [
"20190218092912",
"20190227134551",
"20190304082117",
"20190311085351",
"20190318082207",
"20190325191823",
"20190403101554",
"20190407214523",
"20190417115057",
"20190421224615",
"20190429090715",
"20190506114709",
"20190513073041",
"20190520073516",
"20190527093528",
"20190603075609",
"20190610074320",
"20190617070742",
"20190624111028",
"20190703124137",
"20190707191027",
"20190715092554",
"20190722093326",
"20190728160710",
"20190805082041",
"20190812075123",
"20190818203216",
"20190826111509",
"20190904111622",
"20190909084125",
"20190916091636",
"20190925122344",
"20190929203713",
"20191007112852",
"20191014091114",
"20191022075327",
"20191029075012",
"20191104100921",
"20191110193432",
"20191118082405",
"20191125180407",
"20191202122535",
"20191210083939",
"20191216090111",
"20191224064444",
"20200107081949",
"20200113084204",
"20200119192542",
"20200128190643",
"20200205134222",
"20200211142710",
"20200218125517",
"20200224092439",
"20200304075613",
"20200310160715",
"20200316181853",
"20200323070939",
"20200329190223",
"20200406085043",
"20200414070452",
"20200420194544",
"20200427074213",
"20200506154523",
"20200511134937",
"20200527084641",
"20200601063420",
"20200609101137",
"20200617134604",
"20200622064615",
"20200629203612",
"20200706102742",
"20200713074823",
"20200720065542",
"20200727071119",
"20200803084521",
"20200812130603",
"20200817072035",
"20200824132034",
"20200901091737",
"20200908072535",
"20200915074744",
"20200921072643",
"20200928075254",
"20201005090041",
"20201012105058",
"20201019093048",
"20201027075023",
"20201103195627",
"20201109094755",
"20201117103343",
"20201123135824",
"20201130070451",
"20201207082905",
"20201214133659",
"20201222075353",
"20201229111529",
"20210105201201",
"20210111145026",
"20210117202955",
"20210125193859",
"20210131195453",
"20210208080330",
"20210216083405",
"20210223150323",
"20210302072701",
"20210309065709",
"20210315202640",
"20210322214628",
"20210329184849",
"20210406205515",
"20210412150450",
"20210419064809",
"20210426074742",
"20210502180739",
"20210510062325",
"20210517060518",
"20210524142656",
"20210530214213",
"20210607023242",
"20210614142232",
"20210621182727",
"20210629013444",
"20210704233531",
"20210711181833",
"20210718200634",
"20210726134443",
"20210802063326",
"20210809023919",
"20210817181726",
"20210823061817",
"20210830073414",
"20210906171310",
"20210912194701",
"20210920074928",
"20210927025807",
"20211005160251",
"20211010181202",
"20211018064626",
"20211026015210",
"20211101042006",
"20211108145039",
"20211114155639",
"20211121234757",
"20211128182059",
"20211206152603",
"20211212185751",
"20211219201107",
"20211226220141",
"20220102231528",
"20220110041749",
"20220116154800",
"20220123181934",
"20220130222422",
"20220206223325",
"20220213191036",
"20220220194254",
"20220227211854",
"20220306235926",
"20220314002910",
"20220320162154",
"20220327194059",
"20220404005545",
"20220410214639",
"20220417145954",
"20220424164423",
"20220502005248",
"20220508172859",
"20220515233416",
"20220522162016",
"20220529155049",
"20220605220333",
"20220612173900",
"20220619204931",
"20220626174212",
"20220703181215",
"20220710180111",
"20220718160959",
"20220724165254",
"20220731193206",
"20220807210841",
"20220815002357",
"20220822060842",
"20220828202008",
"20220905035500",
"20220911200404",
"20220918222642",
"20220925203653",
"20221002233842",
"20221009224958",
"20221016180008",
"20221023204349",
"20221030191052",
"20221106215022",
"20221114024057",
"20221121103515",
"20221128042001",
"20221204230205",
"20221212070236",
"20221219150643",
"20221226040933",
"20230102145518",
"20230109050237",
"20230116024002",
"20230123031133",
"20230129222903",
"20230206024837",
"20230213022339",
"20230220011528",
"20230227011116",
"20230306094934",
"20230313033648",
"20230319230117",
"20230326232019",
"20230403011428",
"20230409234256",
"20230416183844",
"20230423214801",
"20230501125140",
"20230508012629",
"20230515132758",
"20230522011949",
"20230529031805",
"20230604223356",
"20230612004848",
"20230618181647",
"20230625213017",
"20230703085219",
"20230710031527",
"20230717031527",
"20230723192358",
"20230730215749",
"20230807042255",
"20230814033329",
"20230821120439",
"20230828055011",
"20230904022248",
"20230911045220",
"20230918102504",
"20230925040109",
"20231002020708",
"20231009014332",
"20231016052804",
"20231022210226",
"20231029103705",
"20231105143247",
"20231112113834",
"20231119152414",
"20231126152225",
"20231203122343",
"20231210161424",
"20231217135652",
"20231224225609",
"20231231234054",
"20240107132004",
"20240114203640",
"20240121134320",
"20240128142815",
"20240204125654",
"20240211210040",
"20240218151802",
"20240225160818",
"20240303193307",
"20240310164523",
"20240317205831",
"20240324123510",
"20240331142029",
"20240407105837",
"20240414192722",
"20240421094305",
"20240428145017",
"20240505151419",
"20240512120314",
"20240519132821",
"20240526184345",
"20240603012124",
"20240609110003",
"20240616134301",
"20240623100252",
"20240629230925",
"20240707005931",
"20240714080522",
"20240721015945",
"20240728030356",
"20240804045227",
"20240811052406",
"20240818041309",
"20240825005031",
"20240901081643",
"20240908010800",
"20240915055637",
"20240923010151",
"20240929133153",
"20241006112430",
"20241013090342",
"20241020061111",
"20241027062314",
"20241103001204",
"20241110080206",
"20241117154432",
"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"
]
}
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": 6000000,
"following": 58,
"posts": 45830,
"type": "twitter",
"value": "https://twitter.com/amazon"
},
"domain_names": [
"www.amazon.com",
"www.amazon.co.uk",
"www.amazon.com.mx",
"www.amazon.ca",
"zouton.com",
"amazon-basics.club",
"www.zouton.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": 1687974
}
}
List Technologies
Returns a list of Technologies. By default, 50 Technologies are returned in a single request. The page request option can be used to paginate.
Plan | Rate Limit |
---|---|
Enterprise | 6 requests/second |
Pro and Elite | 2 requests/second |
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- installs
Filters Technologies based on a text query.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/technology?page_size=2&sort=-installs'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"sort":"-installs"}' 'https://storeleads.app/json/api/v1/all/technology'
Example Response
{
"technologies": [
{
"name": "HelpDocs",
"description": "Build, host, and monitor your Knowledge Base in one piece of software so you can focus on the customers who need your help most.",
"vendor_url": "https://www.helpdocs.io",
"icon_url": "https://storeleads.app/img/tech/helpdocs.png",
"categories": [
"Customer Support"
],
"installs": 72
},
{
"name": "Constructor.io",
"description": "Optimize your business KPIs with the first glass-box product discovery platform.",
"vendor_url": "https://constructor.io",
"icon_url": "https://storeleads.app/img/tech/constructorio.png",
"installs": 363
}
]
}
Tools
Postman
Postman is an app for easy RESTful API exploration and testing. You can use Postman to test API calls without having to write code.
To help get you started, you can review the Store Leads API in Postman. Then, follow the steps below to test the API interactively using the Postman app.
- If you don't already have it installed, visit https://www.getpostman.com/ and install the Postman client.
- Click the Run in Postman button below to open Postman and import the Store Leads API Postman collection.
Swagger API Specification
The Store Leads API specification is available in Swagger/OpenAPI format.
Supported Languages
We haven't published any SDKs yet but the API specification can be used to automatically generate an SDK for a specific programming language. To do so, you'll need to have a working version of swagger-codegen installed and follow the instructions provided by swagger-codegen.
Webhooks
To be notified as soon as new data is added to the site (which happens weekly, normally on a Monday), you can configure webhooks under the Notifications tab of the Account page.