Check out our free Chrome Extension.

API Reference

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.

app_store_url
The URL of the App's page in the app store.
average_rating
The average rating in reviews of the App.
categories
A comma-separated list of app store categories to which the App belongs.
created_at
For Shopify Apps, the date at which the App was launched in the Shopify App Store. For Apps on all other platforms, the date at which the App was first discovered by Store Leads.
description
A description of the App.
description_long

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).

id
A unique identifier for this App.
icon_url
The URL of the App's icon.
installed_at

The time at which the App was installed by a Domain.

installs
The number of active stores that have the app installed (if known).
installs_30d
The number of active stores that have installed the app in the last 30 days.
installs_90d
The number of active stores that have installed the app in the last 90 days.
installs_time_series
A time series of historical install counts. This field is only available when retrieving data for a single App and must be requested explicitly using the fields request option.
instp
The percent of active stores on the ecommerce platform that have this app installed.
integrates_with
A list of software that the App integrates with. Only set for Shopify Apps.
name
The name of the App.
plans
A list of the App's pricing plans.
platform
The name of the app's ecommerce platform (e.g., "shopify", "bigcommerce").
removed_at
The time at which the App was removed from the App store. This value is only set for inactive Apps.
review_count
The number of times that the App has been reviewed by stores.
state
The state of the App. Can be one of the following values:
  • Active
  • Inactive (ie. removed from the App Store)
token
A token that identifies the App. Only guaranteed to be unique among Apps on the same platform.
vendor_address
The mailing address of the entity that created the App. Only available for Shopify Apps.
vendor_email
The email address of the entity that created the App.
vendor_name
The name of the entity that created the App.
vendor_url
The URL of the entity that created the App. For Shopify Apps, this is a vendor page on the Shopify App Store.
vendor_website
The Website of the entity that created the App.

Retrieve an App

Retrieves the details of an App. The app is identified by combining the platform name with the app token (e.g., "shopify.marsello")

Plan Rate Limit
Enterprise 20 requests/second
Pro and Elite 5 requests/second
Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello'

Example Response

{
  "app": {
    "average_rating": "4.3",
    "app_store_url": "https://apps.shopify.com/marsello",
    "state": "Active",
    "free_trial_duration": "336h0m0s",
    "description": "Everything you need to engage and retain your customers. Loyalty program, email, SMS, and more.",
    "icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CMevhZDaj4cDEAE=.png",
    "name": "Marsello: Omnichannel Loyalty",
    "token": "marsello",
    "platform": "shopify",
    "vendor_name": "Marsello",
    "vendor_url": "https://apps.shopify.com/partners/recovermycart",
    "vendor_email": "help@marsello.com",
    "vendor_website": "https://www.marsello.com/",
    "vendor_address": "4 Bond Street, Level 4, Wellington, WGN, 6011, NZ",
    "id": "1.marsello",
    "created_at": "2017-05-29T00:00:00",
    "plans": [
      {
        "name": "Essential",
        "monthly_cost": "$125/month",
        "monthly_cost_cents": 12500
      },
      {
        "name": "Professional",
        "monthly_cost": "$135/month",
        "monthly_cost_cents": 13500
      }
    ],
    "categories": [
      "loyalty and rewards",
      "email marketing"
    ],
    "integrates_with": [
      "Shopify 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": 386,
    "installs": 2581,
    "instp": 0.0010200157843589413,
    "installs_30d": -89,
    "installs_90d": -216,
    "reviews_30d": 1,
    "reviews_90d": 1
  }
}

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
fields

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.

page

The page of results to return. Default: 0.

page_size

The number of Apps to return in a single query. Default: 50, Max: 50.

sort

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-03-21T00:00:00Z",
      "body": "Customer service is absolutely terrible. The experience has been disheartening and only foreshadows what is to come if we stay with them. We just signed up with Marsello and as soon as we became a paying customer, we couldn't get a hold of anyone. BEFORE signing up, I met with several staff members and they all seemed quite eager to help. Support does reply to our emails but the response time is usually about 6 or more hours. Even then, you reply and they don't get back to you for another few hours with a very generic response. How do you expect a business owner to sit tight while being kept in the dark? Customers have already signed up and waiting to use our loyalty program, only to be told it isn't working. This has a negative impact and only serves to discredit our business in the eyes of our customers. 'Ghosting us' speaks to their lack of professionalism as a whole. Their point system is buggy and it is evident. They haven't ironed out all the kinks. \nEDIT:\nThe issue was escalated and the technical team took over. This are up and running now. \nEDIT:\nNow we are experiencing the same issue again and we are being ignored.",
      "merchant_name": "Mr. Halal Burger",
      "domains": [
        {
          "platform_domain": "8efd3b-27.myshopify.com",
          "name": "mrhalalburger.com",
          "platform_rank": 177109
        }
      ],
      "rating": 1
    },
    {
      "updated_at": "2025-02-20T00:00:00Z",
      "body": "Although the app itself has great features, the support is the worst I have ever experienced. I have been waiting over a month (close to two) for technical resolution of a problem the Marsello tech caused and they keep blowing me off by rewriting my complaint in their own words or just telling me they are too busy or by not bothering to reply at all for days. If you think you may need assistance with the app, look elsewhere. They re\nreally not interested in helping existing clients. \n\nWhile the issue above was resolved, the company randomly claimed that their \"prices were too low\" and they raised the cost of my subscription by like 1,000%-- it went from about $30 monthly to over $160. So, BEWARE... if you think this it it available at a \"good\" price, they may decide again to \"make their prices match competitors\" and mark up what you're paying by orders of magnitude. And at this point, like me, you may find that you're in too deep to change. BEWARE. \n\nBeyond that, their site does NOT work well on mobile. If you're looking for something you can manage on the go, this is not the app for you. \n\nFurthermore, they charge you based on customers but offer no method to determine if those customers are active (even though they have a Lost Customers segment). Once a name is on your list, you pay for it forever, even if it is \"lost.\" They should have an opt-in preset email flow so clients can regularly audit their lists to keep costs low.",
      "merchant_name": "UB2 | Urban Baby Bonnets",
      "domains": [
        {
          "platform_domain": "bebabyco.myshopify.com",
          "name": "urbanbabybonnets.com",
          "platform_rank": 75304
        }
      ],
      "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
f:categories

Filters the results to Apps that belong to the provided categories. Multiple categories must be comma-separated.

f:categories:op

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.

f:icmin

Filters the results to Apps with install counts greater than or equal to the provided integer value.

f:icmax

Filters the results to Apps with install counts than or equal to the provided integer value.

f:p

Filters the results to Apps on the given ecommerce platform. Multiple values must be comma-separated.

Valid values are:

  • custom
  • shopify
  • wix
  • woocommerce

f:p:op

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.

f:rcmin

Filters the results to Apps with review counts greater than or equal to the provided integer value.

f:rcmax

Filters the results to Apps with review counts than or equal to the provided integer value.

fields

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.

page

The page of results to return. Default: 0.

page_size

The number of Apps to return in a single query. Default: 50, Max: 50.

sort

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

q

Filters Apps based on a text query. (e.g., a query for "dropship" will return only Apps that matching the word "dropship" in the App name or description fields).

Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app?page_size=2&f:p=shopify&f:categories=marketing'

Search requests can also be triggered via HTTP POST.

$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:p":"shopify","f:categories":"marketing"}' 'https://storeleads.app/json/api/v1/all/app'

Example Response

{
  "apps": [
    {
      "average_rating": "5.0",
      "app_store_url": "https://apps.shopify.com/flashyapp-marketing-automation",
      "state": "Active",
      "description": "All-In-One Marketing Automation Platform for eCommerce",
      "icon_url": "https://cdn.shopify.com/app-store/listing_images/372dbfce35571e26aba38e41b47c5a0c/icon/CJXqis70lu8CEAE=.png?height=84\u0026width=84",
      "name": "Flashy ‑ Marketing Automation",
      "token": "flashyapp-marketing-automation",
      "platform": "shopify",
      "vendor_name": "Flashy",
      "vendor_url": "https://apps.shopify.com/partners/developer-8c7c2ff225c2d971",
      "vendor_email": "hello@flashyapp.com",
      "vendor_website": "https://flashyapp.com",
      "id": "1.flashyapp-marketing-automation",
      "created_at": "2019-02-27T00:00:00",
      "plans": [
        {
          "name": "Starter",
          "monthly_cost": "$7/month",
          "monthly_cost_cents": 700
        },
        {
          "name": "Professional",
          "monthly_cost": "$40/month",
          "monthly_cost_cents": 4000
        },
        {
          "name": "Master",
          "monthly_cost": "$99/month",
          "monthly_cost_cents": 9900
        },
        {
          "name": "Enterprise",
          "monthly_cost": "$199/month",
          "monthly_cost_cents": 19900
        }
      ],
      "categories": [
        "store design",
        "marketing",
        "conversion"
      ],
      "review_count": 11
    },
    {
      "average_rating": "5.0",
      "app_store_url": "https://apps.shopify.com/checkoutify",
      "state": "Active",
      "free_trial_duration": "720h0m0s",
      "description": "Abandoned Carts Recovery with Email \u0026 Web Push Notifications.",
      "icon_url": "https://apps.shopifycdn.com/listing_images/9426efac2fdaf3affe4f4a934d42eaf4/icon/adeda788be6fc234defeb422ab8e6265.png?height=84\u0026width=84",
      "name": "Checkoutify ",
      "token": "checkoutify",
      "platform": "shopify",
      "vendor_name": "MOTIF®",
      "vendor_url": "https://apps.shopify.com/partners/raawaz",
      "vendor_email": "hello@checkoutify.co",
      "vendor_website": "https://checkoutify.co",
      "id": "1.checkoutify",
      "created_at": "2019-07-03T00:00:00",
      "plans": [
        {
          "name": "Starter",
          "monthly_cost": "$25.99/month",
          "monthly_cost_cents": 2599
        },
        {
          "name": "Advanced",
          "monthly_cost": "$49.99/month",
          "monthly_cost_cents": 4999
        },
        {
          "name": "Premier",
          "monthly_cost": "$99.99/month",
          "monthly_cost_cents": 9999
        },
        {
          "name": "Elite",
          "monthly_cost": "$149.99/month",
          "monthly_cost_cents": 14999
        }
      ],
      "categories": [
        "store design",
        "marketing",
        "sales and conversion optimization"
      ],
      "review_count": 6
    }
  ]
}

Domains

Domain objects represent an online store identified by a DNS domain name. The API allows you to retrieve information for a domain based on its name, by searching for domains that match certain criteria or by exporting all domains.

The attributes of the Domain object are documented below.

administrative_area_level_1
The administrative_area_level_1 of the Domain (if known). This value often represents the state/province of the associated merchant's headquarters.
aliases
List of alias DNS domain names that refer to this Domain. Aliases are identified as other DNS domain names that point to the Domain through canonical links or redirects.
alternates
List of alternate DNS domain names for this Domain. Alternate domain names are localized versions of the domain for a specific locale. e.g., ca.merchant.com and uk.merchant.com. The API returns a map (also called a dictionary in some programming languages) of locale name to domain name.
apps
List of Apps that the Domain has installed.
avg_price

The average price of products sold on the Domain. Values in the minor unit of the Domain's currency (e.g., cents of USD).

avg_price_formatted

The average price of products sold on the Domain. Formatted in the store's currency. (e.g., $9.75)

avg_price_usd

The average price of products (converted to USD) sold on the Domain. Values in the cents of USD.

avg_weight

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.

brands_page
The URL of the Domain's "Brands Page" (if any) which typically lists the brands sold on the website. Presence of this page implies that the merchant is a retailer (as opposed to a brand).
career_page
The URL of the Domain's "Career Page" (if any).
categories
A list of the Domain's categories. Categories represent the Domain's industry vertical (e.g., "/Apparel/" or "/Beauty & Fitness/Face & Body Care")
cc_centrality
The Domain's centrality score from the Common Crawl Project (if known).
cc_rank
The Domain's page rank score from the Common Crawl Project (if known).
city
The city of the Domain (if known). This value often represents the city of the associated merchant's headquarters.
cluster_best_ranked
For merchants that have multiple domains (e.g., merchant.com, merchant.co.uk and merchant.com.au), cluster_best_ranked is the name of the Domain that has the best rank within the cluster.
cluster_domains
For merchants that have multiple domains (e.g., merchant.com, merchant.co.uk and merchant.com.au), cluster_domains contains a list Domain names that are in the same cluster.
collection_count
The number of published collections on the store (only available for Shopify stores).
collections
The names of product collections used by the store (only available for Shopify stores). Note: this list is not guaranteed to be complete since we're only able to discover collection names in the form of links on the store's website.
contact_info

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
contact_page
The URL of the Domain's "Contact Us Page" (if any).
country_code
The 2-letter ISO country code of the Domain. Note that a small percentage of Domains are not country-specific (they sell to multiple countries) and these Domains do not have a country-code.
created_at
The date at which the Domain was created. It is hard to know exactly when a store was created so this represents our best guess. For Domains created after July 2018, the creation date is based on when we first discovered the Domain, which tends to be very close to the actual creation date. For Domains created before July 2018, we use a heuristic that includes historic DNS data, which provides a reasonable approximation of domain creation time.
currency_code
The 3-letter ISO currency code of the Domain.
description
A text description of the Domain (from the home page's meta description tage). Generally used to describe the goods and services provided by the merchant.
employee_count

The number of employees.

estimated_page_views

The estimated total monthly page views for the Domain.

estimated_sales

The estimated total monthly sales for the merchant. Values in cents of USD.

estimated_sales_yearly

The estimated total yearly sales for the merchant. Values in cents of USD.

estimated_visits

The estimated total monthly visits for the Domain.

features
A list of miscellaneous features on the domain. e.g., ["Tracking Page", "Returns Page"]
financing_page
The URL of the Domain's "Financing Page" (if any).
icon
A URL to the favicon for the Domain (if any).
inactive_at
The date at which the Domain became Inactive. Only set for Domains in Inactive state.
keywords
A list of keywords describing the Domain (from the home page's meta keywords tage). Generally used to describe the goods and services provided by the merchant.
language_code
The 2-letter ISO 639-1 code for the language of content on the Domain's website. Value is blank is not known.
last_platform
The name of the ecommerce platform that the Domain previously used (if any). Note: Data not available for Domains that changed ecommerce platforms prior to October 2019.
last_platform_change_at

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.

last_plan

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.

last_plan_change_at

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.

last_updated_at
The date at which data for the Domain was last updated.
latitude
The latitude of the Domain (if known). This value often represents the location of the associated merchant's headquarters.
location
The geographic location of the Domain (if known). This value is often the city/state of the associated merchant's headquarters.
localizations
A list of localizations that are available on the store. e.g., ["en-us", "en-ca", "fr-fr"] This value is only known for some Shopify stores.
longitude
The longitude of the Domain (if known). This value often represents the location of the associated merchant's headquarters.
magento_version
The version of Magento that the Domain uses (if known). Only applies to merchants on the Magento platform.
max_price

The price of the most expensive product sold on the Domain.

Only available for Shopify stores using the regular (non-headless) frontend.

max_price_usd

The price of the most expensive product (converted to USD) sold on the Domain. Values in the cents of USD.

max_weight

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.

max_product_published_at
The date that the most recent product was published by the merchant (if known). Only applies to merchants on the Shopify platform.
merchant_name
The name of the merchant that is selling on the Domain.
min_price

The price of the cheapest product sold on the Domain.

Only available for Shopify stores using the regular (non-headless) frontend.

min_price_usd

The price of the cheapest product (converted to USD) sold on the Domain. Values in the cents of USD.

min_weight

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.

monthly_app_spend
The estimated amount the merchant spends on apps every month. Values in cents of USD.
most_recently_published_product

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.

name
The DNS domain name of the Domain.
og_image
The Open Graph Image URL from the Domain's home page (if any).
plan
The name of the ecommerce platform's pricing plan that the merchant is using (if known). e.g., "Shopify Plus"
platform
The name of the ecommerce platform that powers the Domain.
platform_rank
The rank of the Domain against all other Domains on the same ecommerce platforms. We rank ecommerce domains based on the popularity of each Domain (via traffic estimates) and the number and significance of links to each Domain.
platform_rank_percentile
The percentile rank of the Domain against all other Domains on the same ecommerce platforms.
postal_code
The postal code of the Domain (if known). This value is available for a very small subset of overall stores.
product_count

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.

product_images_created_30

The number of product images added in the last 30 days.

Only available for Shopify stores using the regular (non-headless) frontend.

product_images_created_90

The number of product images added in the last 90 days.

Only available for Shopify stores using the regular (non-headless) frontend.

product_images_created_365

The number of product images added in the last 365 days.

Only available for Shopify stores using the regular (non-headless) frontend.

rank
The "world-wide" rank of the Domain (across all supported ecommerce platforms). We rank all ecommerce domains based on the popularity of each Domain (via traffic estimates) and the number and significance of links to each Domain.
rank_percentile
The percentile rank of the Domain (across all supported ecommerce platforms).
redirects_to
A list of domain names to which this Domain redirects. Only set on Domains in the Redirect state. This is an array since some Domains conditionally redirect to different locations (for instance, to redirect to one of many country-specific stores).
retailer_page
The URL of the Domain's "Retailer Page" (if any) which typically lists the retailers that sell the products made by the brand. Presence of this page implies that the merchant is a brand (as opposed to a retailer).
returns_page
The URL of the Domain's "Returns/Exchanges Page" (if any).
sales_channels
A list of alternate sales channels used by the Domain. Can include values like "Etsy", "Amazon" and "Handshake".
shipping_carriers
A list of shipping carriers that the Domain uses to ship physical goods (e.g., "USPS", "Fedex")
ships_to_countries
A list of countries to which the store ships. Only available for Shopify stores.
sizing_page
The URL of the Domain's "Sizing Page" (if any).
state
The state of the Domain. Can be one of the following values:
  • Active
  • Inactive
  • Password Protected
  • Redirect
store_locator_page
The URL of the Domain's "Store Locator Page" (if any).
street_address
The street address code of the Domain (if known). This value is available for a very small subset of overall stores.
tags
A list of tags associated with the Domain. Tags are automatically applied to Domains based on various attributes. Possible values:
  • 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
technologies
Lists the third-party technologies installed on the Domain. Includes the following attributes:
  • name
  • description
theme
Describes the theme that the Domain is using. Includes the following attributes:
  • 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)
title
The value of the HTML title tag on the Domain's home page.
tracking_page
The URL of the Domain's "Tracking/Shipping Page" (if any).
variant_count

The number of distinct variants across all products sold by the Domain.

Only available for Shopify stores using the regular (non-headless) frontend.

vendor_count

The number of distinct vendors of products sold by the Domain.

Vendor counts are only available for Shopify stores.

warranty_page
The URL of the Domain's "Warranty Page" (if any).

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
follow_redirects

For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.

Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.khy.com'

Example Response

{
  "domain": {
    "theme": {
      "name": "dawn",
      "style": "Unknown",
      "vendor": "Shopify",
      "version": "1.0.0",
      "theme_store_id": 887
    },
    "plan": "Shopify Plus",
    "cluster_best_ranked": "www.khy.com",
    "city": "Culver City",
    "last_updated_at": "2025-04-06T00:00:00",
    "subregion": "Northern America",
    "contact_page": "https://www.khy.com/pages/contact",
    "country_code": "US",
    "currency_code": "USD",
    "title": "Khy by Kylie Jenner",
    "administrative_area_level_1": "California",
    "state": "Active",
    "icon": "https://www.khy.com/cdn/shop/files/favicon-32x32.png?crop=center\u0026height=32\u0026v=1696349810\u0026width=32",
    "brand_advocate_page": "https://www.khy.com/pages/collaborators",
    "faq_page": "https://www.khy.com/pages/faq",
    "returns_page": "https://www.khy.com/pages/returns",
    "region": "Americas",
    "language_code": "en",
    "about_us": "https://www.khy.com/pages/about-us",
    "platform_domain": "ccdc23.myshopify.com",
    "last_plan_change_at": "2024-08-19T00:00:00",
    "platform": "shopify",
    "location": "Culver City, CA, USA",
    "og_image": "https://cdn.shopify.com/s/files/1/0781/1314/5147/files/Untitled-2.webp?v=1741901861",
    "max_product_published_at": "2025-04-07T00:00:00",
    "merchant_name": "Khy",
    "avg_price_formatted": "$91.68",
    "created_at": "2023-09-29T00:00:00",
    "name": "www.khy.com",
    "tld1": "khy.com",
    "description": "Upgrade your wardrobe with Khy by Kylie Jenner. Shop best sellers like the Smooth Stretch Capri Catsuit \u0026 more. Experience the latest in fashion \u0026 style",
    "contact_info": [
      {
        "description": "http://khy.com http://khy.com",
        "followers": 1419,
        "followers_30d": -16,
        "followers_90d": -16,
        "source": "/",
        "type": "twitter",
        "value": "https://twitter.com/khybrand"
      },
      {
        "source": "/",
        "type": "facebook",
        "value": "https://www.facebook.com/khybrand"
      },
      {
        "source": "/",
        "type": "instagram",
        "value": "https://www.instagram.com/khy"
      },
      {
        "source": "/",
        "type": "instagram",
        "value": "https://www.instagram.com/kyliejenner"
      },
      {
        "source": "/",
        "type": "email",
        "value": "support@khy.com"
      },
      {
        "description": "See what Khy (Khybrand) has discovered on Pinterest, the world's biggest collection of ideas.",
        "followers": 223,
        "followers_90d": 12,
        "source": "/",
        "type": "pinterest",
        "value": "https://www.pinterest.com/khybrand"
      },
      {
        "description": "Share your videos with friends, family, and the world",
        "followers": 163,
        "followers_90d": 13,
        "source": "/",
        "type": "youtube",
        "value": "https://www.youtube.com/@Khybrand"
      },
      {
        "source": "/",
        "type": "linkedin",
        "value": "https://www.linkedin.com/company/khy-by-kylie-jenner"
      },
      {
        "description": "now live: khy x POSTER GIRL",
        "followers": 222000,
        "followers_90d": 69134,
        "likes": 3200000,
        "source": "/",
        "type": "tiktok",
        "value": "https://www.tiktok.com/@khy"
      },
      {
        "source": "/pages/terms",
        "type": "phone",
        "value": "+18556265655"
      }
    ],
    "aliases": [
      "ccdc23.myshopify.com"
    ],
    "apps": [
      {
        "installed_at": "2024-04-11T17:38:16Z",
        "average_rating": "4.8",
        "app_store_url": "https://apps.shopify.com/accessibly-app",
        "state": "Active",
        "free_trial_duration": "168h0m0s",
        "description": "Make your store more accessible and inclusive with Accessibly. We help you with ADA/WCAG compliance.",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/eaa87116bccafa4ba6349f0628498edb/icon/CJX_77f0lu8CEAE=.png",
        "name": "Accessibly",
        "token": "accessibly-app",
        "platform": "shopify",
        "vendor_name": "On The Map Marketing",
        "vendor_url": "https://apps.shopify.com/partners/on-the-map-marketing",
        "vendor_email": "hello@accessiblyapp.com",
        "vendor_website": "https://accessiblyapp.com/",
        "vendor_address": "200 SE 1st St #502, Miami, FL, 33131, US",
        "id": "1.accessibly-app",
        "created_at": "2019-09-13T00:00:00",
        "plans": [
          {
            "name": "Standard",
            "monthly_cost": "$5/month",
            "monthly_cost_cents": 500
          },
          {
            "name": "Premium",
            "monthly_cost": "$25/month",
            "monthly_cost_cents": 2500
          },
          {
            "name": "Enterprise",
            "monthly_cost": "$75/month",
            "monthly_cost_cents": 7500
          }
        ],
        "categories": [
          "accessibility"
        ],
        "review_count": 29,
        "installs": 11619,
        "instp": 0.004598615547191318,
        "installs_30d": 100,
        "installs_90d": 273
      },
      {
        "installed_at": "2023-11-22T12:26:00Z",
        "average_rating": "4.8",
        "app_store_url": "https://apps.shopify.com/back-in-stock",
        "state": "Active",
        "free_trial_duration": "336h0m0s",
        "description": "Capture Lost Sales from Sold Out Products with Automated Back in Stock Alerts",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/08346a36a0a313120feec14003bedbc3/icon/CJbKmrvYgYwDEAE=.png",
        "name": "AMP ‑ Back in Stock",
        "token": "back-in-stock",
        "platform": "shopify",
        "vendor_name": "HEL SG PTE LTD",
        "vendor_url": "https://apps.shopify.com/partners/yellow-robot",
        "vendor_email": "support@backinstock.org",
        "vendor_website": "https://backinstock.org/",
        "vendor_address": "90 Eu Tong Sen Street, #03-02, Singapore, 059811, SG",
        "id": "1.back-in-stock",
        "created_at": "2011-05-18T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free to install"
          },
          {
            "name": "Lite Plan",
            "monthly_cost": "$19/month",
            "monthly_cost_cents": 1900
          },
          {
            "name": "Startup",
            "monthly_cost": "$29/month",
            "monthly_cost_cents": 2900
          },
          {
            "name": "Small Business",
            "monthly_cost": "$49/month",
            "monthly_cost_cents": 4900
          }
        ],
        "categories": [
          "stock alerts",
          "email marketing"
        ],
        "integrates_with": [
          "Shopify Flow\n \n \n MailChimp\n \n \n Klaviyo\n \n \n Constant Contact\n \n \n Campaign Monitor\n \n \n Zapier\n \n \n Cross Sell \u0026 Cart Upsell"
        ],
        "review_count": 892,
        "installs": 27250,
        "instp": 0.010785116934414616,
        "installs_30d": -153,
        "installs_90d": -668,
        "reviews_30d": 6,
        "reviews_90d": 5
      },
      {
        "installed_at": "2024-08-19T16:17:22Z",
        "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": 80,
        "installs": 13613,
        "instp": 0.005387809057915089,
        "installs_30d": 1097,
        "installs_90d": 3323,
        "reviews_30d": 9,
        "reviews_90d": 18
      },
      {
        "installed_at": "2025-03-02T12:57:38Z",
        "average_rating": "5",
        "app_store_url": "https://apps.shopify.com/giftnote",
        "state": "Active",
        "free_trial_duration": "336h0m0s",
        "description": "Offer a world-leading gifting experience and grow your gifting revenue with Giftnote",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/aafcd2d7a7e2a91499a62e4892e0c051/icon/COnc9NTHsvsCEAE=.png",
        "name": "Giftnote Gift Messages \u0026 Cards",
        "token": "giftnote",
        "platform": "shopify",
        "vendor_name": "Giftnote",
        "vendor_url": "https://apps.shopify.com/partners/giftnote",
        "vendor_email": "support@giftnote.com",
        "vendor_website": "https://giftnote.com/",
        "vendor_address": "Level 4, Suite 4.02, 76a Edinburgh Rd, Marrickville NSW 2204, Sydney, NSW, 2000, AU",
        "id": "1.giftnote",
        "created_at": "2022-03-16T00:00:00",
        "plans": [
          {
            "name": "Core Plan",
            "monthly_cost": "$19/month",
            "monthly_cost_cents": 1900
          },
          {
            "name": "Professional Plan",
            "monthly_cost": "$99/month",
            "monthly_cost_cents": 9900
          }
        ],
        "categories": [
          "gift wrap and messages",
          "gift cards"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Shopify Flow\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Okendo\n \n \n Flow\n \n \n Rebuy\n \n \n Loop"
        ],
        "review_count": 109,
        "installs": 339,
        "instp": 0.00013417081250519466,
        "installs_30d": 8,
        "installs_90d": 21,
        "reviews_30d": 4,
        "reviews_90d": 8
      },
      {
        "installed_at": "2024-10-30T18:26:56Z",
        "average_rating": "4.6",
        "app_store_url": "https://apps.shopify.com/gtm-datalayer-by-elevar",
        "state": "Active",
        "free_trial_duration": "360h0m0s",
        "description": "Never miss a conversion with Elevar's Server-Side tracking. Improve ad ROAS and lower your CPMs.",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/e6748a47b626678883beaf91f28ca7e3/icon/COywqozq1vwCEAE=.jpeg",
        "name": "Elevar Conversion Tracking",
        "token": "gtm-datalayer-by-elevar",
        "platform": "shopify",
        "vendor_name": "Elevar",
        "vendor_url": "https://apps.shopify.com/partners/elevar",
        "vendor_email": "help@getelevar.com",
        "vendor_website": "https://www.getelevar.com/",
        "vendor_address": "520 Folly Road, Suite 25, Charleston, SC, 29412, US",
        "id": "1.gtm-datalayer-by-elevar",
        "created_at": "2018-09-26T00:00:00",
        "plans": [
          {
            "name": "Elevar Starter",
            "monthly_cost": "Free to install"
          },
          {
            "name": "Elevar Essentials",
            "monthly_cost": "$200/month",
            "monthly_cost_cents": 20000
          },
          {
            "name": "Elevar Growth",
            "monthly_cost": "$450/month",
            "monthly_cost_cents": 45000
          },
          {
            "name": "Elevar Business",
            "monthly_cost": "$950/month",
            "monthly_cost_cents": 95000
          }
        ],
        "categories": [
          "ads",
          "analytics"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Google Ads and GA4\n \n \n Web Pixel API\n \n \n Facebook Conversion API (CAPI)\n \n \n iubenda Onetrust and Cookiebot\n \n \n Google Tag Manager (GTM)\n \n \n Klaviyo"
        ],
        "review_count": 162,
        "installs": 8152,
        "instp": 0.0032264320458476312,
        "installs_30d": 24,
        "installs_90d": -21,
        "reviews_30d": 3,
        "reviews_90d": 8
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "average_rating": "4.2",
        "app_store_url": "https://apps.shopify.com/helpdesk",
        "state": "Active",
        "free_trial_duration": "168h0m0s",
        "description": "Streamline your customer experience with automation and AI",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/d783d0d0ded4ab7a13c20f47533819a3/icon/CNOe1Y-4vocDEAE=.png",
        "name": "Gorgias: Helpdesk, Chat \u0026 FAQ",
        "token": "helpdesk",
        "platform": "shopify",
        "vendor_name": "Gorgias Inc.",
        "vendor_url": "https://apps.shopify.com/partners/gorgias",
        "vendor_email": "support@gorgias.com",
        "vendor_website": "https://www.gorgias.com",
        "vendor_address": "180 Sansome Street, Suite 1800, San Francisco, CA, 94104, US",
        "id": "1.helpdesk",
        "created_at": "2017-03-01T00:00:00",
        "plans": [
          {
            "name": "Starter plan",
            "monthly_cost": "$10/month",
            "monthly_cost_cents": 1000
          },
          {
            "name": "Basic plan",
            "monthly_cost": "$60/month",
            "monthly_cost_cents": 6000
          },
          {
            "name": "Pro plan",
            "monthly_cost": "$360/month",
            "monthly_cost_cents": 36000
          },
          {
            "name": "Advanced plan",
            "monthly_cost": "$900/month",
            "monthly_cost_cents": 90000
          }
        ],
        "categories": [
          "chat",
          "helpdesk"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Shopify Flow\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Attentive\n \n \n Recharge\n \n \n Aircall\n \n \n 20+ Integrations"
        ],
        "review_count": 717,
        "installs": 21027,
        "instp": 0.008322152432291233,
        "installs_30d": 413,
        "installs_90d": 907,
        "reviews_30d": 3,
        "reviews_90d": 6
      },
      {
        "installed_at": "2024-11-27T12:09:31Z",
        "average_rating": "4.9",
        "app_store_url": "https://apps.shopify.com/instafeed",
        "state": "Active",
        "free_trial_duration": "168h0m0s",
        "description": "Display custom shoppable Instagram Feeds on your store. Convert your store visitors into customers.",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/ff3b61a8718cbdeb80d3a8dcf0b25014/icon/CM-CuonX5YcDEAE=.png",
        "name": "Instafeed ‑ Instagram Feed",
        "token": "instafeed",
        "platform": "shopify",
        "vendor_name": "Mintt Studio",
        "vendor_url": "https://apps.shopify.com/partners/developer-857a316c902a1f7b",
        "vendor_email": "support@minttstudio.com",
        "vendor_website": "https://minttstudio.com/",
        "vendor_address": "Rua Parque da República, 116, Vila Nova de Gaia, PT-13, 4430-164, PT",
        "id": "1.instafeed",
        "created_at": "2016-09-30T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free"
          },
          {
            "name": "Pro",
            "monthly_cost": "$6/month",
            "monthly_cost_cents": 600
          },
          {
            "name": "Plus",
            "monthly_cost": "$20/month",
            "monthly_cost_cents": 2000
          }
        ],
        "categories": [
          "social proof",
          "image gallery"
        ],
        "integrates_with": [
          "Instagram\n \n \n Facebook\n \n \n GemPages\n \n \n Shop app"
        ],
        "review_count": 1923,
        "installs": 220732,
        "instp": 0.08736221765751218,
        "installs_30d": 1700,
        "installs_90d": 4662,
        "reviews_30d": 24,
        "reviews_90d": 73
      },
      {
        "installed_at": "2024-11-27T12:09:31Z",
        "average_rating": "2.5",
        "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": "629 N. High St., Suite 300, 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": 221,
        "installs": 181673,
        "instp": 0.07190328619544611,
        "installs_30d": 6909,
        "installs_90d": 15948,
        "reviews_30d": 2,
        "reviews_90d": 9
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "average_rating": "4.6",
        "app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
        "state": "Active",
        "description": "Grow 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 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": 3427,
        "installs": 358411,
        "instp": 0.14185337781946702,
        "installs_30d": 6234,
        "installs_90d": 17625,
        "reviews_30d": 86,
        "reviews_90d": 253
      },
      {
        "installed_at": "2025-03-23T13:11:41Z",
        "average_rating": "4.6",
        "app_store_url": "https://apps.shopify.com/nofraud-chargeback-prevention-and-protection",
        "state": "Active",
        "description": "Flexible, real-time decision-making technology so accurate it fights fraudand grows revenue",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/69121ffde1650224b9c34762331a678e/icon/CLf6ss30lu8CEAE=.jpg",
        "name": "NoFraud Fraud Protection",
        "token": "nofraud-chargeback-prevention-and-protection",
        "platform": "shopify",
        "vendor_name": "NoFraud, LLC",
        "vendor_url": "https://apps.shopify.com/partners/developer-cbd9ee0d541986cb",
        "vendor_email": "support@nofraud.com",
        "vendor_website": "https://app.swaggerhub.com/apis-docs/NoFraud-API/NoFraud-NAPI/1.0#/",
        "vendor_address": "1 World Trade Center, Ste. 76G, New York City, NY, 10007, US",
        "id": "1.nofraud-chargeback-prevention-and-protection",
        "created_at": "2016-11-23T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free to install"
          }
        ],
        "categories": [
          "fraud"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Shopify Flow\n \n \n Recharge\n \n \n Shop Pay\n \n \n Paypal\n \n \n Yotpo Subscriptions\n \n \n Skio\n \n \n Stay AI"
        ],
        "review_count": 181,
        "installs": 6798,
        "instp": 0.002690540364042222,
        "installs_30d": 21,
        "installs_90d": 28,
        "reviews_90d": 2
      },
      {
        "installed_at": "2024-04-19T03:37:05Z",
        "average_rating": "4.9",
        "app_store_url": "https://apps.shopify.com/okendo-reviews",
        "state": "Active",
        "free_trial_duration": "336h0m0s",
        "description": "The customer marketing platform with Reviews, Surveys, Quizzes, Referrals \u0026 Loyalty all in one place",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/fe55626671bd5da73785c606c2b0752f/icon/CNKRrIWatfoCEAE=.png",
        "name": "Okendo: Reviews \u0026 Loyalty",
        "token": "okendo-reviews",
        "platform": "shopify",
        "vendor_name": "Okendo",
        "vendor_url": "https://apps.shopify.com/partners/okendo",
        "vendor_email": "support@okendo.io",
        "vendor_website": "https://www.okendo.io/",
        "vendor_address": "Level 13, 333 George St, Sydney, NSW, 2000, AU",
        "id": "1.okendo-reviews",
        "created_at": "2018-06-12T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free"
          },
          {
            "name": "Essential",
            "monthly_cost": "$19/month",
            "monthly_cost_cents": 1900
          },
          {
            "name": "Growth",
            "monthly_cost": "$119/month",
            "monthly_cost_cents": 11900
          }
        ],
        "categories": [
          "product reviews",
          "loyalty and rewards"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Shopify POS\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Postscript\n \n \n Attentive\n \n \n Google\n \n \n Meta"
        ],
        "review_count": 1152,
        "installs": 16513,
        "instp": 0.006535582970201415,
        "installs_30d": -64,
        "installs_90d": 493,
        "reviews_30d": 27,
        "reviews_90d": 72
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "average_rating": "0",
        "app_store_url": "https://apps.shopify.com/optoro-returns",
        "state": "Active",
        "description": "Take the headache out of returns. Save the sale with exchanges, offer drop-offs, and home pickups.",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/9bd53b126eb0339610110c1f0e0b4694/icon/COWG2fyJrvkCEAE=.png",
        "name": "Optoro Returns \u0026 Exchanges",
        "token": "optoro-returns",
        "platform": "shopify",
        "vendor_name": "Optoro",
        "vendor_url": "https://apps.shopify.com/partners/optoro1",
        "vendor_email": "support@optoro.com",
        "vendor_website": "https://www.optoro.com",
        "vendor_address": "1001 G St NW, Washington, DC, 20001, US",
        "id": "1.optoro-returns",
        "created_at": "2022-09-22T00:00:00",
        "categories": [
          "returns and exchanges",
          "orders - other"
        ],
        "installs": 10,
        "instp": 0.0000039578410768494
      },
      {
        "installed_at": "2024-10-10T01:20:58Z",
        "average_rating": "3.7",
        "app_store_url": "https://apps.shopify.com/route",
        "state": "Active",
        "description": "Deliver premium post-purchase experiences—get shipping protection, tracking \u0026 more",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/7115601f61e3feae998d828bd6f6ecf3/icon/CPjqsrrijfwCEAE=.jpeg",
        "name": "Route Protection and Tracking",
        "token": "route",
        "platform": "shopify",
        "vendor_name": "RouteApp LLC",
        "vendor_url": "https://apps.shopify.com/partners/routeapp-llc",
        "vendor_email": "merchantsupport@route.com",
        "vendor_website": "https://route.com/merchants/",
        "vendor_address": "1441 W Innovation Way, Suite 200, Lehi, UT, 84043, US",
        "id": "1.route",
        "created_at": "2019-01-17T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free to install"
          }
        ],
        "categories": [
          "order tracking",
          "warranties and insurance"
        ],
        "integrates_with": [
          "Checkout"
        ],
        "review_count": 429,
        "installs": 13388,
        "instp": 0.005298757633685977,
        "installs_30d": -58,
        "installs_90d": -405,
        "reviews_30d": 3,
        "reviews_90d": 2
      },
      {
        "installed_at": "2024-07-29T19:28:55Z",
        "average_rating": "3.8",
        "app_store_url": "https://apps.shopify.com/triplewhale-1",
        "state": "Active",
        "free_trial_duration": "1440h0m0s",
        "description": "Agent-powered intelligence for your entire brand.",
        "icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
        "name": "Triple Whale",
        "token": "triplewhale-1",
        "platform": "shopify",
        "vendor_name": "Triple Whale",
        "vendor_url": "https://apps.shopify.com/partners/cherniv",
        "vendor_email": "support@triplewhale.com",
        "vendor_website": "https://www.trytriplewhale.com/",
        "vendor_address": "266 N 5th street, Columbus, OH, 43215, US",
        "id": "1.triplewhale-1",
        "created_at": "2020-12-04T00:00:00",
        "plans": [
          {
            "name": "Free",
            "monthly_cost": "Free"
          },
          {
            "name": "Starter",
            "monthly_cost": "$1,490\n \n \n / year"
          },
          {
            "name": "Advanced",
            "monthly_cost": "$2,190\n \n \n / year"
          },
          {
            "name": "Professional",
            "monthly_cost": "$4,490\n \n \n / year"
          }
        ],
        "categories": [
          "analytics"
        ],
        "integrates_with": [
          "Checkout\n\n \n \n Customer accounts\n\n \n \n Facebook\n \n \n Google Ads\n \n \n Klaviyo\n \n \n TikTok\n \n \n Gorgias\n \n \n Recharge"
        ],
        "review_count": 83,
        "installs": 26884,
        "instp": 0.010640259951001927,
        "installs_30d": 772,
        "installs_90d": 1743,
        "reviews_90d": 6
      }
    ],
    "categories": [
      "/Apparel",
      "/Apparel/Women's Clothing",
      "/Apparel/Footwear"
    ],
    "technologies": [
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "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",
        "installs": 467542
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Apple Pay",
        "description": "Make contactless, secure purchases in stores, in apps, and on the web.",
        "vendor_url": "https://www.apple.com/apple-pay",
        "icon_url": "https://storeleads.app/img/tech/apple_pay.png",
        "installs": 1590484
      },
      {
        "installed_at": "2024-02-15T04:15:31Z",
        "name": "Arrive",
        "description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
        "vendor_url": "https://tryarrive.com",
        "icon_url": "https://storeleads.app/img/tech/arrive.png",
        "installs": 2360185
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Cloudflare",
        "description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
        "vendor_url": "https://www.cloudflare.com",
        "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
        "installs": 4473078
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Cloudflare CDN",
        "description": "Protect and accelerate your websites, apps, and teams.",
        "vendor_url": "https://www.cloudflare.com",
        "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
        "installs": 3730457
      },
      {
        "installed_at": "2024-10-30T18:26:56Z",
        "name": "Elevar",
        "description": "Marketers, analysts, and Shopify brand owners use Elevar for accurate conversion tracking.",
        "vendor_url": "https://www.getelevar.com",
        "icon_url": "https://storeleads.app/img/tech/elevar.png",
        "installs": 10277
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Global-e",
        "description": "Grow your international sales quickly and simply in more than 200 destinations with Global-e’s end-to-end cross-border solutions.",
        "vendor_url": "https://www.global-e.com",
        "icon_url": "https://storeleads.app/img/tech/globale.png",
        "installs": 2533
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Google Ads Pixel",
        "description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
        "vendor_url": "https://ads.google.com/",
        "icon_url": "https://storeleads.app/img/tech/adwords.png",
        "installs": 3307521
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Google Adsense",
        "description": "Earn money with website monetization from Google AdSense.",
        "vendor_url": "https://www.google.com/adsense/start",
        "icon_url": "https://storeleads.app/img/tech/adsense.png",
        "installs": 4406442
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Google Pay",
        "description": "Google Pay is the fast, simple way to pay online, in stores and more.",
        "vendor_url": "https://pay.google.com",
        "icon_url": "https://storeleads.app/img/tech/googlepay.png",
        "installs": 1435994
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Google Tag Manager",
        "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
        "vendor_url": "https://tagmanager.google.com/",
        "icon_url": "https://storeleads.app/img/tech/gtm.png",
        "installs": 4273247
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Gorgias",
        "description": "Gorgias provides flawless customer service for ecommerce stores",
        "vendor_url": "https://www.gorgias.com/",
        "icon_url": "https://storeleads.app/img/tech/gorgias.png",
        "installs": 23170
      },
      {
        "installed_at": "2024-11-27T12:09:31Z",
        "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",
        "installs": 238067
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Klaviyo",
        "description": "Klaviyo is the growth marketing platform built for online businesses.",
        "vendor_url": "https://www.klaviyo.com/",
        "icon_url": "https://storeleads.app/img/tech/klaviyo.png",
        "installs": 450741
      },
      {
        "installed_at": "2025-03-16T14:06:35Z",
        "name": "Microsoft Clarity",
        "description": "Clarity is a free tool that captures how people use your site. Setup is easy and you'll start getting data in minutes.",
        "vendor_url": "https://clarity.microsoft.com",
        "icon_url": "https://storeleads.app/img/tech/microsoft.png",
        "installs": 311438
      },
      {
        "installed_at": "2025-03-23T13:11:41Z",
        "name": "NoFraud",
        "description": "Real-time Fraud Screening for eCommerce.",
        "vendor_url": "https://www.nofraud.com",
        "icon_url": "https://storeleads.app/img/tech/nofraud.png",
        "installs": 7013
      },
      {
        "installed_at": "2024-04-19T03:37:05Z",
        "name": "Okendo",
        "description": "The new standard in customer reviews.",
        "vendor_url": "https://www.okendo.io",
        "icon_url": "https://storeleads.app/img/tech/okendo.png",
        "installs": 16668
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Optoro",
        "description": "The returns platform that does it all.",
        "vendor_url": "https://www.optoro.com",
        "icon_url": "https://storeleads.app/img/tech/optoro.png",
        "installs": 13
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "PayPal Express Checkout",
        "description": "Add PayPal to your existing checkout.",
        "vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
        "icon_url": "https://storeleads.app/img/tech/paypal.png",
        "installs": 1424130
      },
      {
        "installed_at": "2024-10-10T01:20:58Z",
        "name": "Route",
        "description": "Route empowers brands to be intentional about their post-purchase experience with visual order tracking, package protection, effortless claim-filing, and the world’s first universal order history.",
        "vendor_url": "https://route.com/merchants",
        "icon_url": "https://storeleads.app/img/tech/route.png",
        "installs": 14554
      },
      {
        "installed_at": "2023-11-04T04:40:27Z",
        "name": "Shop Pay",
        "description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
        "vendor_url": "https://shop.app/what-shop-does",
        "icon_url": "https://storeleads.app/img/tech/shop.png",
        "installs": 1344233
      },
      {
        "installed_at": "2024-11-13T17:19:33Z",
        "name": "TikTok Pixel",
        "description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
        "vendor_url": "https://www.tiktok.com/business/en",
        "icon_url": "https://storeleads.app/img/tech/tiktok.png",
        "installs": 579848
      },
      {
        "installed_at": "2024-07-29T19:28:55Z",
        "name": "Triple Whale",
        "description": "Easily manage and automate analytics, attribution, merchandising, forecasting \u0026 more — in the palm of your hand.",
        "vendor_url": "https://www.triplewhale.com",
        "icon_url": "https://storeleads.app/img/tech/triplewhale.png",
        "installs": 27547
      }
    ],
    "collections": [
      "entire-studios-pt2",
      "khy-x-namilia",
      "outerwear",
      "atlein",
      "bottoms",
      "drop-005",
      "khy-x-poster-girl",
      "kylies-closet",
      "shop",
      "best-sellers",
      "besties",
      "khy-x-entire-studios",
      "shop-all",
      "sia-arnika",
      "sweats-and-leggings",
      "tees-and-tops",
      "dresses",
      "drop-001",
      "drop-004",
      "ioannes",
      "khy-wardrobe",
      "new",
      "sueded",
      "base-layer-shop",
      "denim-tees",
      "drop-002",
      "drop-003",
      "drop-006"
    ],
    "cluster_domains": [
      "www.khy.com",
      "khy.co.il"
    ],
    "features": [
      "Shopify POS",
      "Returns Page",
      "Shopify Online Store 2.0",
      "Gift Messaging",
      "New Shopify Checkout (2022)",
      "Accepts Gift Cards",
      "Contact Page",
      "Tracking or Returns",
      "International Shipping",
      "FAQ Page",
      "Brand Advocate Page",
      "Has Blog"
    ],
    "shipping_carriers": [
      "UPS"
    ],
    "ships_to_countries": [
      "Andorra",
      "United Arab Emirates",
      "Antigua and Barbuda",
      "Anguilla",
      "Albania",
      "Armenia",
      "Angola",
      "Argentina",
      "Austria",
      "Australia",
      "Aruba",
      "Azerbaijan",
      "Bosnia and Herzegovina",
      "Barbados",
      "Bangladesh",
      "Belgium",
      "Burkina Faso",
      "Bulgaria",
      "Bahrain",
      "Burundi",
      "Benin",
      "Saint Barthélemy",
      "Bermuda",
      "Brunei Darussalam",
      "Bolivia (Plurinational State of)",
      "Brazil",
      "Bahamas",
      "Bhutan",
      "Botswana",
      "Belize",
      "Canada",
      "Congo",
      "Switzerland",
      "Côte d'Ivoire",
      "Cook Islands",
      "Chile",
      "Cameroon",
      "China",
      "Colombia",
      "Costa Rica",
      "Cabo Verde",
      "Curaçao",
      "Cyprus",
      "Czech Republic",
      "Germany",
      "Djibouti",
      "Denmark",
      "Dominica",
      "Dominican Republic",
      "Algeria",
      "Ecuador",
      "Estonia",
      "Egypt",
      "Spain",
      "Ethiopia",
      "Finland",
      "Fiji",
      "Falkland Islands (the) [Malvinas]",
      "Faroe Islands",
      "France",
      "Gabon",
      "United Kingdom",
      "Grenada",
      "Georgia",
      "French Guiana",
      "Guernsey",
      "Ghana",
      "Gibraltar",
      "Greenland",
      "Gambia",
      "Guinea",
      "Guadeloupe",
      "Equatorial Guinea",
      "Greece",
      "Guatemala",
      "Guinea-Bissau",
      "Guyana",
      "Hong Kong",
      "Honduras",
      "Croatia",
      "Haiti",
      "Hungary",
      "Indonesia",
      "Ireland",
      "Israel",
      "Isle of Man",
      "India",
      "Iceland",
      "Italy",
      "Jersey",
      "Jamaica",
      "Jordan",
      "Japan",
      "Kenya",
      "Kyrgyzstan",
      "Cambodia",
      "Kiribati",
      "Comoros",
      "Saint Kitts and Nevis",
      "Korea (the Republic of)",
      "Kuwait",
      "Cayman Islands",
      "Kazakhstan",
      "Lao People's Democratic Republic",
      "Lebanon",
      "Saint Lucia",
      "Liechtenstein",
      "Sri Lanka",
      "Liberia",
      "Lesotho",
      "Lithuania",
      "Luxembourg",
      "Latvia",
      "Morocco",
      "Monaco",
      "Moldova (the Republic of)",
      "Montenegro",
      "Saint Martin (French part)",
      "Madagascar",
      "Macedonia (the former Yugoslav Republic of)",
      "Mongolia",
      "Macao",
      "Martinique",
      "Mauritania",
      "Montserrat",
      "Malta",
      "Mauritius",
      "Maldives",
      "Malawi",
      "Mexico",
      "Malaysia",
      "Mozambique",
      "Namibia",
      "New Caledonia",
      "Nigeria",
      "Nicaragua",
      "Netherlands",
      "Norway",
      "Nepal",
      "Nauru",
      "Niue",
      "New Zealand",
      "Oman",
      "Panama",
      "Peru",
      "French Polynesia",
      "Papua New Guinea",
      "Philippines",
      "Pakistan",
      "Poland",
      "Portugal",
      "Paraguay",
      "Qatar",
      "Réunion",
      "Romania",
      "Serbia",
      "Rwanda",
      "Saudi Arabia",
      "Solomon Islands",
      "Seychelles",
      "Sweden",
      "Singapore",
      "Saint Helena, Ascension and Tristan da Cunha",
      "Slovenia",
      "Slovakia",
      "Sierra Leone",
      "San Marino",
      "Senegal",
      "Suriname",
      "Sao Tome and Principe",
      "El Salvador",
      "Sint Maarten (Dutch part)",
      "Swaziland",
      "Turks and Caicos Islands",
      "Chad",
      "Togo",
      "Thailand",
      "Timor-Leste",
      "Turkmenistan",
      "Tunisia",
      "Tonga",
      "Trinidad and Tobago",
      "Tuvalu",
      "Taiwan",
      "Tanzania, United Republic of",
      "Uganda",
      "United States",
      "Uruguay",
      "Uzbekistan",
      "Holy See",
      "Saint Vincent and the Grenadines",
      "Venezuela (Bolivarian Republic of)",
      "Virgin Islands (British)",
      "Vietnam",
      "Vanuatu",
      "Wallis and Futuna",
      "Samoa",
      "Mayotte",
      "South Africa",
      "Zambia",
      "Zimbabwe"
    ],
    "rank_percentile": 0.0004,
    "collection_count": 92,
    "rank": 57,
    "latitude": 34.0211224,
    "longitude": -118.3964665,
    "estimated_page_views": 1234681,
    "estimated_sales": 141024230,
    "estimated_sales_yearly": 1692290760,
    "estimated_visits": 332867,
    "product_images": 5353,
    "product_images_created_365": 4559,
    "product_images_created_90": 503,
    "product_images_created_30": 287,
    "employee_count": 31,
    "cc_rank": 1593206,
    "cc_centrality": 865184,
    "product_count": 686,
    "max_price": 50000,
    "max_price_usd": 50000,
    "max_weight": 9979,
    "monthly_app_spend": 3400,
    "min_price": 2500,
    "min_price_usd": 2500,
    "min_weight": 14,
    "variant_count": 6129,
    "vendor_count": 10,
    "avg_price": 9168,
    "avg_price_usd": 9168,
    "avg_weight": 573,
    "platform_rank": 1
  }
}

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
follow_redirects

For Domains that redirect to another Domain, the caller typically needs to make a 2nd API call to fetch the details for other Domain (which is identified in the redirects_to response attribute). If the follow_redirects request opion is set to true (follow_redirects=true), the API automatically returns data for the other Domain.

Example Request

$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"domains": ["www.khy.com"]}' 'https://storeleads.app/json/api/v1/all/domain/bulk'

Example Response

{
  "domains": [
    {
      "theme": {
        "name": "dawn",
        "style": "Unknown",
        "vendor": "Shopify",
        "version": "1.0.0",
        "theme_store_id": 887
      },
      "plan": "Shopify Plus",
      "cluster_best_ranked": "www.khy.com",
      "city": "Culver City",
      "last_updated_at": "2025-04-06T00:00:00",
      "subregion": "Northern America",
      "contact_page": "https://www.khy.com/pages/contact",
      "country_code": "US",
      "currency_code": "USD",
      "title": "Khy by Kylie Jenner",
      "administrative_area_level_1": "California",
      "state": "Active",
      "icon": "https://www.khy.com/cdn/shop/files/favicon-32x32.png?crop=center\u0026height=32\u0026v=1696349810\u0026width=32",
      "brand_advocate_page": "https://www.khy.com/pages/collaborators",
      "faq_page": "https://www.khy.com/pages/faq",
      "returns_page": "https://www.khy.com/pages/returns",
      "region": "Americas",
      "language_code": "en",
      "about_us": "https://www.khy.com/pages/about-us",
      "platform_domain": "ccdc23.myshopify.com",
      "last_plan_change_at": "2024-08-19T00:00:00",
      "platform": "shopify",
      "location": "Culver City, CA, USA",
      "og_image": "https://cdn.shopify.com/s/files/1/0781/1314/5147/files/Untitled-2.webp?v=1741901861",
      "max_product_published_at": "2025-04-07T00:00:00",
      "merchant_name": "Khy",
      "avg_price_formatted": "$91.68",
      "created_at": "2023-09-29T00:00:00",
      "name": "www.khy.com",
      "tld1": "khy.com",
      "description": "Upgrade your wardrobe with Khy by Kylie Jenner. Shop best sellers like the Smooth Stretch Capri Catsuit \u0026 more. Experience the latest in fashion \u0026 style",
      "contact_info": [
        {
          "description": "http://khy.com http://khy.com",
          "followers": 1419,
          "followers_30d": -16,
          "followers_90d": -16,
          "source": "/",
          "type": "twitter",
          "value": "https://twitter.com/khybrand"
        },
        {
          "source": "/",
          "type": "facebook",
          "value": "https://www.facebook.com/khybrand"
        },
        {
          "source": "/",
          "type": "instagram",
          "value": "https://www.instagram.com/khy"
        },
        {
          "source": "/",
          "type": "instagram",
          "value": "https://www.instagram.com/kyliejenner"
        },
        {
          "source": "/",
          "type": "email",
          "value": "support@khy.com"
        },
        {
          "description": "See what Khy (Khybrand) has discovered on Pinterest, the world's biggest collection of ideas.",
          "followers": 223,
          "followers_90d": 12,
          "source": "/",
          "type": "pinterest",
          "value": "https://www.pinterest.com/khybrand"
        },
        {
          "description": "Share your videos with friends, family, and the world",
          "followers": 163,
          "followers_90d": 13,
          "source": "/",
          "type": "youtube",
          "value": "https://www.youtube.com/@Khybrand"
        },
        {
          "source": "/",
          "type": "linkedin",
          "value": "https://www.linkedin.com/company/khy-by-kylie-jenner"
        },
        {
          "description": "now live: khy x POSTER GIRL",
          "followers": 222000,
          "followers_90d": 69134,
          "likes": 3200000,
          "source": "/",
          "type": "tiktok",
          "value": "https://www.tiktok.com/@khy"
        },
        {
          "source": "/pages/terms",
          "type": "phone",
          "value": "+18556265655"
        }
      ],
      "aliases": [
        "ccdc23.myshopify.com"
      ],
      "apps": [
        {
          "installed_at": "2024-04-11T17:38:16Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/accessibly-app",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Make your store more accessible and inclusive with Accessibly. We help you with ADA/WCAG compliance.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/eaa87116bccafa4ba6349f0628498edb/icon/CJX_77f0lu8CEAE=.png",
          "name": "Accessibly",
          "token": "accessibly-app",
          "platform": "shopify",
          "vendor_name": "On The Map Marketing",
          "vendor_url": "https://apps.shopify.com/partners/on-the-map-marketing",
          "vendor_email": "hello@accessiblyapp.com",
          "vendor_website": "https://accessiblyapp.com/",
          "vendor_address": "200 SE 1st St #502, Miami, FL, 33131, US",
          "id": "1.accessibly-app",
          "created_at": "2019-09-13T00:00:00",
          "plans": [
            {
              "name": "Standard",
              "monthly_cost": "$5/month",
              "monthly_cost_cents": 500
            },
            {
              "name": "Premium",
              "monthly_cost": "$25/month",
              "monthly_cost_cents": 2500
            },
            {
              "name": "Enterprise",
              "monthly_cost": "$75/month",
              "monthly_cost_cents": 7500
            }
          ],
          "categories": [
            "accessibility"
          ],
          "review_count": 29,
          "installs": 11619,
          "instp": 0.004598615547191318,
          "installs_30d": 100,
          "installs_90d": 273
        },
        {
          "installed_at": "2023-11-22T12:26:00Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/back-in-stock",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Capture Lost Sales from Sold Out Products with Automated Back in Stock Alerts",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/08346a36a0a313120feec14003bedbc3/icon/CJbKmrvYgYwDEAE=.png",
          "name": "AMP ‑ Back in Stock",
          "token": "back-in-stock",
          "platform": "shopify",
          "vendor_name": "HEL SG PTE LTD",
          "vendor_url": "https://apps.shopify.com/partners/yellow-robot",
          "vendor_email": "support@backinstock.org",
          "vendor_website": "https://backinstock.org/",
          "vendor_address": "90 Eu Tong Sen Street, #03-02, Singapore, 059811, SG",
          "id": "1.back-in-stock",
          "created_at": "2011-05-18T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            },
            {
              "name": "Lite Plan",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "Startup",
              "monthly_cost": "$29/month",
              "monthly_cost_cents": 2900
            },
            {
              "name": "Small Business",
              "monthly_cost": "$49/month",
              "monthly_cost_cents": 4900
            }
          ],
          "categories": [
            "stock alerts",
            "email marketing"
          ],
          "integrates_with": [
            "Shopify Flow\n \n \n MailChimp\n \n \n Klaviyo\n \n \n Constant Contact\n \n \n Campaign Monitor\n \n \n Zapier\n \n \n Cross Sell \u0026 Cart Upsell"
          ],
          "review_count": 892,
          "installs": 27250,
          "instp": 0.010785116934414616,
          "installs_30d": -153,
          "installs_90d": -668,
          "reviews_30d": 6,
          "reviews_90d": 5
        },
        {
          "installed_at": "2024-08-19T16:17:22Z",
          "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": 80,
          "installs": 13613,
          "instp": 0.005387809057915089,
          "installs_30d": 1097,
          "installs_90d": 3323,
          "reviews_30d": 9,
          "reviews_90d": 18
        },
        {
          "installed_at": "2025-03-02T12:57:38Z",
          "average_rating": "5",
          "app_store_url": "https://apps.shopify.com/giftnote",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Offer a world-leading gifting experience and grow your gifting revenue with Giftnote",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/aafcd2d7a7e2a91499a62e4892e0c051/icon/COnc9NTHsvsCEAE=.png",
          "name": "Giftnote Gift Messages \u0026 Cards",
          "token": "giftnote",
          "platform": "shopify",
          "vendor_name": "Giftnote",
          "vendor_url": "https://apps.shopify.com/partners/giftnote",
          "vendor_email": "support@giftnote.com",
          "vendor_website": "https://giftnote.com/",
          "vendor_address": "Level 4, Suite 4.02, 76a Edinburgh Rd, Marrickville NSW 2204, Sydney, NSW, 2000, AU",
          "id": "1.giftnote",
          "created_at": "2022-03-16T00:00:00",
          "plans": [
            {
              "name": "Core Plan",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "Professional Plan",
              "monthly_cost": "$99/month",
              "monthly_cost_cents": 9900
            }
          ],
          "categories": [
            "gift wrap and messages",
            "gift cards"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify Flow\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Okendo\n \n \n Flow\n \n \n Rebuy\n \n \n Loop"
          ],
          "review_count": 109,
          "installs": 339,
          "instp": 0.00013417081250519466,
          "installs_30d": 8,
          "installs_90d": 21,
          "reviews_30d": 4,
          "reviews_90d": 8
        },
        {
          "installed_at": "2024-10-30T18:26:56Z",
          "average_rating": "4.6",
          "app_store_url": "https://apps.shopify.com/gtm-datalayer-by-elevar",
          "state": "Active",
          "free_trial_duration": "360h0m0s",
          "description": "Never miss a conversion with Elevar's Server-Side tracking. Improve ad ROAS and lower your CPMs.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/e6748a47b626678883beaf91f28ca7e3/icon/COywqozq1vwCEAE=.jpeg",
          "name": "Elevar Conversion Tracking",
          "token": "gtm-datalayer-by-elevar",
          "platform": "shopify",
          "vendor_name": "Elevar",
          "vendor_url": "https://apps.shopify.com/partners/elevar",
          "vendor_email": "help@getelevar.com",
          "vendor_website": "https://www.getelevar.com/",
          "vendor_address": "520 Folly Road, Suite 25, Charleston, SC, 29412, US",
          "id": "1.gtm-datalayer-by-elevar",
          "created_at": "2018-09-26T00:00:00",
          "plans": [
            {
              "name": "Elevar Starter",
              "monthly_cost": "Free to install"
            },
            {
              "name": "Elevar Essentials",
              "monthly_cost": "$200/month",
              "monthly_cost_cents": 20000
            },
            {
              "name": "Elevar Growth",
              "monthly_cost": "$450/month",
              "monthly_cost_cents": 45000
            },
            {
              "name": "Elevar Business",
              "monthly_cost": "$950/month",
              "monthly_cost_cents": 95000
            }
          ],
          "categories": [
            "ads",
            "analytics"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Google Ads and GA4\n \n \n Web Pixel API\n \n \n Facebook Conversion API (CAPI)\n \n \n iubenda Onetrust and Cookiebot\n \n \n Google Tag Manager (GTM)\n \n \n Klaviyo"
          ],
          "review_count": 162,
          "installs": 8152,
          "instp": 0.0032264320458476312,
          "installs_30d": 24,
          "installs_90d": -21,
          "reviews_30d": 3,
          "reviews_90d": 8
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "average_rating": "4.2",
          "app_store_url": "https://apps.shopify.com/helpdesk",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Streamline your customer experience with automation and AI",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/d783d0d0ded4ab7a13c20f47533819a3/icon/CNOe1Y-4vocDEAE=.png",
          "name": "Gorgias: Helpdesk, Chat \u0026 FAQ",
          "token": "helpdesk",
          "platform": "shopify",
          "vendor_name": "Gorgias Inc.",
          "vendor_url": "https://apps.shopify.com/partners/gorgias",
          "vendor_email": "support@gorgias.com",
          "vendor_website": "https://www.gorgias.com",
          "vendor_address": "180 Sansome Street, Suite 1800, San Francisco, CA, 94104, US",
          "id": "1.helpdesk",
          "created_at": "2017-03-01T00:00:00",
          "plans": [
            {
              "name": "Starter plan",
              "monthly_cost": "$10/month",
              "monthly_cost_cents": 1000
            },
            {
              "name": "Basic plan",
              "monthly_cost": "$60/month",
              "monthly_cost_cents": 6000
            },
            {
              "name": "Pro plan",
              "monthly_cost": "$360/month",
              "monthly_cost_cents": 36000
            },
            {
              "name": "Advanced plan",
              "monthly_cost": "$900/month",
              "monthly_cost_cents": 90000
            }
          ],
          "categories": [
            "chat",
            "helpdesk"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify Flow\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Attentive\n \n \n Recharge\n \n \n Aircall\n \n \n 20+ Integrations"
          ],
          "review_count": 717,
          "installs": 21027,
          "instp": 0.008322152432291233,
          "installs_30d": 413,
          "installs_90d": 907,
          "reviews_30d": 3,
          "reviews_90d": 6
        },
        {
          "installed_at": "2024-11-27T12:09:31Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/instafeed",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Display custom shoppable Instagram Feeds on your store. Convert your store visitors into customers.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/ff3b61a8718cbdeb80d3a8dcf0b25014/icon/CM-CuonX5YcDEAE=.png",
          "name": "Instafeed ‑ Instagram Feed",
          "token": "instafeed",
          "platform": "shopify",
          "vendor_name": "Mintt Studio",
          "vendor_url": "https://apps.shopify.com/partners/developer-857a316c902a1f7b",
          "vendor_email": "support@minttstudio.com",
          "vendor_website": "https://minttstudio.com/",
          "vendor_address": "Rua Parque da República, 116, Vila Nova de Gaia, PT-13, 4430-164, PT",
          "id": "1.instafeed",
          "created_at": "2016-09-30T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free"
            },
            {
              "name": "Pro",
              "monthly_cost": "$6/month",
              "monthly_cost_cents": 600
            },
            {
              "name": "Plus",
              "monthly_cost": "$20/month",
              "monthly_cost_cents": 2000
            }
          ],
          "categories": [
            "social proof",
            "image gallery"
          ],
          "integrates_with": [
            "Instagram\n \n \n Facebook\n \n \n GemPages\n \n \n Shop app"
          ],
          "review_count": 1923,
          "installs": 220732,
          "instp": 0.08736221765751218,
          "installs_30d": 1700,
          "installs_90d": 4662,
          "reviews_30d": 24,
          "reviews_90d": 73
        },
        {
          "installed_at": "2024-11-27T12:09:31Z",
          "average_rating": "2.5",
          "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": "629 N. High St., Suite 300, 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": 221,
          "installs": 181673,
          "instp": 0.07190328619544611,
          "installs_30d": 6909,
          "installs_90d": 15948,
          "reviews_30d": 2,
          "reviews_90d": 9
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "average_rating": "4.6",
          "app_store_url": "https://apps.shopify.com/klaviyo-email-marketing",
          "state": "Active",
          "description": "Grow 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 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": 3427,
          "installs": 358411,
          "instp": 0.14185337781946702,
          "installs_30d": 6234,
          "installs_90d": 17625,
          "reviews_30d": 86,
          "reviews_90d": 253
        },
        {
          "installed_at": "2025-03-23T13:11:41Z",
          "average_rating": "4.6",
          "app_store_url": "https://apps.shopify.com/nofraud-chargeback-prevention-and-protection",
          "state": "Active",
          "description": "Flexible, real-time decision-making technology so accurate it fights fraudand grows revenue",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/69121ffde1650224b9c34762331a678e/icon/CLf6ss30lu8CEAE=.jpg",
          "name": "NoFraud Fraud Protection",
          "token": "nofraud-chargeback-prevention-and-protection",
          "platform": "shopify",
          "vendor_name": "NoFraud, LLC",
          "vendor_url": "https://apps.shopify.com/partners/developer-cbd9ee0d541986cb",
          "vendor_email": "support@nofraud.com",
          "vendor_website": "https://app.swaggerhub.com/apis-docs/NoFraud-API/NoFraud-NAPI/1.0#/",
          "vendor_address": "1 World Trade Center, Ste. 76G, New York City, NY, 10007, US",
          "id": "1.nofraud-chargeback-prevention-and-protection",
          "created_at": "2016-11-23T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "fraud"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify Flow\n \n \n Recharge\n \n \n Shop Pay\n \n \n Paypal\n \n \n Yotpo Subscriptions\n \n \n Skio\n \n \n Stay AI"
          ],
          "review_count": 181,
          "installs": 6798,
          "instp": 0.002690540364042222,
          "installs_30d": 21,
          "installs_90d": 28,
          "reviews_90d": 2
        },
        {
          "installed_at": "2024-04-19T03:37:05Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/okendo-reviews",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "The customer marketing platform with Reviews, Surveys, Quizzes, Referrals \u0026 Loyalty all in one place",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/fe55626671bd5da73785c606c2b0752f/icon/CNKRrIWatfoCEAE=.png",
          "name": "Okendo: Reviews \u0026 Loyalty",
          "token": "okendo-reviews",
          "platform": "shopify",
          "vendor_name": "Okendo",
          "vendor_url": "https://apps.shopify.com/partners/okendo",
          "vendor_email": "support@okendo.io",
          "vendor_website": "https://www.okendo.io/",
          "vendor_address": "Level 13, 333 George St, Sydney, NSW, 2000, AU",
          "id": "1.okendo-reviews",
          "created_at": "2018-06-12T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free"
            },
            {
              "name": "Essential",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "Growth",
              "monthly_cost": "$119/month",
              "monthly_cost_cents": 11900
            }
          ],
          "categories": [
            "product reviews",
            "loyalty and rewards"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify POS\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Postscript\n \n \n Attentive\n \n \n Google\n \n \n Meta"
          ],
          "review_count": 1152,
          "installs": 16513,
          "instp": 0.006535582970201415,
          "installs_30d": -64,
          "installs_90d": 493,
          "reviews_30d": 27,
          "reviews_90d": 72
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "average_rating": "0",
          "app_store_url": "https://apps.shopify.com/optoro-returns",
          "state": "Active",
          "description": "Take the headache out of returns. Save the sale with exchanges, offer drop-offs, and home pickups.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/9bd53b126eb0339610110c1f0e0b4694/icon/COWG2fyJrvkCEAE=.png",
          "name": "Optoro Returns \u0026 Exchanges",
          "token": "optoro-returns",
          "platform": "shopify",
          "vendor_name": "Optoro",
          "vendor_url": "https://apps.shopify.com/partners/optoro1",
          "vendor_email": "support@optoro.com",
          "vendor_website": "https://www.optoro.com",
          "vendor_address": "1001 G St NW, Washington, DC, 20001, US",
          "id": "1.optoro-returns",
          "created_at": "2022-09-22T00:00:00",
          "categories": [
            "returns and exchanges",
            "orders - other"
          ],
          "installs": 10,
          "instp": 0.0000039578410768494
        },
        {
          "installed_at": "2024-10-10T01:20:58Z",
          "average_rating": "3.7",
          "app_store_url": "https://apps.shopify.com/route",
          "state": "Active",
          "description": "Deliver premium post-purchase experiences—get shipping protection, tracking \u0026 more",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/7115601f61e3feae998d828bd6f6ecf3/icon/CPjqsrrijfwCEAE=.jpeg",
          "name": "Route Protection and Tracking",
          "token": "route",
          "platform": "shopify",
          "vendor_name": "RouteApp LLC",
          "vendor_url": "https://apps.shopify.com/partners/routeapp-llc",
          "vendor_email": "merchantsupport@route.com",
          "vendor_website": "https://route.com/merchants/",
          "vendor_address": "1441 W Innovation Way, Suite 200, Lehi, UT, 84043, US",
          "id": "1.route",
          "created_at": "2019-01-17T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "order tracking",
            "warranties and insurance"
          ],
          "integrates_with": [
            "Checkout"
          ],
          "review_count": 429,
          "installs": 13388,
          "instp": 0.005298757633685977,
          "installs_30d": -58,
          "installs_90d": -405,
          "reviews_30d": 3,
          "reviews_90d": 2
        },
        {
          "installed_at": "2024-07-29T19:28:55Z",
          "average_rating": "3.8",
          "app_store_url": "https://apps.shopify.com/triplewhale-1",
          "state": "Active",
          "free_trial_duration": "1440h0m0s",
          "description": "Agent-powered intelligence for your entire brand.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/c7a604d25ac49a1baf49a30ef9c4f957/icon/CNSRsMfm0PwCEAE=.png",
          "name": "Triple Whale",
          "token": "triplewhale-1",
          "platform": "shopify",
          "vendor_name": "Triple Whale",
          "vendor_url": "https://apps.shopify.com/partners/cherniv",
          "vendor_email": "support@triplewhale.com",
          "vendor_website": "https://www.trytriplewhale.com/",
          "vendor_address": "266 N 5th street, Columbus, OH, 43215, US",
          "id": "1.triplewhale-1",
          "created_at": "2020-12-04T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free"
            },
            {
              "name": "Starter",
              "monthly_cost": "$1,490\n \n \n / year"
            },
            {
              "name": "Advanced",
              "monthly_cost": "$2,190\n \n \n / year"
            },
            {
              "name": "Professional",
              "monthly_cost": "$4,490\n \n \n / year"
            }
          ],
          "categories": [
            "analytics"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Customer accounts\n\n \n \n Facebook\n \n \n Google Ads\n \n \n Klaviyo\n \n \n TikTok\n \n \n Gorgias\n \n \n Recharge"
          ],
          "review_count": 83,
          "installs": 26884,
          "instp": 0.010640259951001927,
          "installs_30d": 772,
          "installs_90d": 1743,
          "reviews_90d": 6
        }
      ],
      "categories": [
        "/Apparel",
        "/Apparel/Women's Clothing",
        "/Apparel/Footwear"
      ],
      "technologies": [
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "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",
          "installs": 467542
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Apple Pay",
          "description": "Make contactless, secure purchases in stores, in apps, and on the web.",
          "vendor_url": "https://www.apple.com/apple-pay",
          "icon_url": "https://storeleads.app/img/tech/apple_pay.png",
          "installs": 1590484
        },
        {
          "installed_at": "2024-02-15T04:15:31Z",
          "name": "Arrive",
          "description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
          "vendor_url": "https://tryarrive.com",
          "icon_url": "https://storeleads.app/img/tech/arrive.png",
          "installs": 2360185
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Cloudflare",
          "description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 4473078
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Cloudflare CDN",
          "description": "Protect and accelerate your websites, apps, and teams.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 3730457
        },
        {
          "installed_at": "2024-10-30T18:26:56Z",
          "name": "Elevar",
          "description": "Marketers, analysts, and Shopify brand owners use Elevar for accurate conversion tracking.",
          "vendor_url": "https://www.getelevar.com",
          "icon_url": "https://storeleads.app/img/tech/elevar.png",
          "installs": 10277
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Global-e",
          "description": "Grow your international sales quickly and simply in more than 200 destinations with Global-e’s end-to-end cross-border solutions.",
          "vendor_url": "https://www.global-e.com",
          "icon_url": "https://storeleads.app/img/tech/globale.png",
          "installs": 2533
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Google Ads Pixel",
          "description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
          "vendor_url": "https://ads.google.com/",
          "icon_url": "https://storeleads.app/img/tech/adwords.png",
          "installs": 3307521
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Google Adsense",
          "description": "Earn money with website monetization from Google AdSense.",
          "vendor_url": "https://www.google.com/adsense/start",
          "icon_url": "https://storeleads.app/img/tech/adsense.png",
          "installs": 4406442
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Google Pay",
          "description": "Google Pay is the fast, simple way to pay online, in stores and more.",
          "vendor_url": "https://pay.google.com",
          "icon_url": "https://storeleads.app/img/tech/googlepay.png",
          "installs": 1435994
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Google Tag Manager",
          "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
          "vendor_url": "https://tagmanager.google.com/",
          "icon_url": "https://storeleads.app/img/tech/gtm.png",
          "installs": 4273247
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Gorgias",
          "description": "Gorgias provides flawless customer service for ecommerce stores",
          "vendor_url": "https://www.gorgias.com/",
          "icon_url": "https://storeleads.app/img/tech/gorgias.png",
          "installs": 23170
        },
        {
          "installed_at": "2024-11-27T12:09:31Z",
          "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",
          "installs": 238067
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Klaviyo",
          "description": "Klaviyo is the growth marketing platform built for online businesses.",
          "vendor_url": "https://www.klaviyo.com/",
          "icon_url": "https://storeleads.app/img/tech/klaviyo.png",
          "installs": 450741
        },
        {
          "installed_at": "2025-03-16T14:06:35Z",
          "name": "Microsoft Clarity",
          "description": "Clarity is a free tool that captures how people use your site. Setup is easy and you'll start getting data in minutes.",
          "vendor_url": "https://clarity.microsoft.com",
          "icon_url": "https://storeleads.app/img/tech/microsoft.png",
          "installs": 311438
        },
        {
          "installed_at": "2025-03-23T13:11:41Z",
          "name": "NoFraud",
          "description": "Real-time Fraud Screening for eCommerce.",
          "vendor_url": "https://www.nofraud.com",
          "icon_url": "https://storeleads.app/img/tech/nofraud.png",
          "installs": 7013
        },
        {
          "installed_at": "2024-04-19T03:37:05Z",
          "name": "Okendo",
          "description": "The new standard in customer reviews.",
          "vendor_url": "https://www.okendo.io",
          "icon_url": "https://storeleads.app/img/tech/okendo.png",
          "installs": 16668
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Optoro",
          "description": "The returns platform that does it all.",
          "vendor_url": "https://www.optoro.com",
          "icon_url": "https://storeleads.app/img/tech/optoro.png",
          "installs": 13
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "PayPal Express Checkout",
          "description": "Add PayPal to your existing checkout.",
          "vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
          "icon_url": "https://storeleads.app/img/tech/paypal.png",
          "installs": 1424130
        },
        {
          "installed_at": "2024-10-10T01:20:58Z",
          "name": "Route",
          "description": "Route empowers brands to be intentional about their post-purchase experience with visual order tracking, package protection, effortless claim-filing, and the world’s first universal order history.",
          "vendor_url": "https://route.com/merchants",
          "icon_url": "https://storeleads.app/img/tech/route.png",
          "installs": 14554
        },
        {
          "installed_at": "2023-11-04T04:40:27Z",
          "name": "Shop Pay",
          "description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
          "vendor_url": "https://shop.app/what-shop-does",
          "icon_url": "https://storeleads.app/img/tech/shop.png",
          "installs": 1344233
        },
        {
          "installed_at": "2024-11-13T17:19:33Z",
          "name": "TikTok Pixel",
          "description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
          "vendor_url": "https://www.tiktok.com/business/en",
          "icon_url": "https://storeleads.app/img/tech/tiktok.png",
          "installs": 579848
        },
        {
          "installed_at": "2024-07-29T19:28:55Z",
          "name": "Triple Whale",
          "description": "Easily manage and automate analytics, attribution, merchandising, forecasting \u0026 more — in the palm of your hand.",
          "vendor_url": "https://www.triplewhale.com",
          "icon_url": "https://storeleads.app/img/tech/triplewhale.png",
          "installs": 27547
        }
      ],
      "collections": [
        "shop-all",
        "sia-arnika",
        "sweats-and-leggings",
        "tees-and-tops",
        "dresses",
        "drop-001",
        "drop-004",
        "ioannes",
        "khy-wardrobe",
        "new",
        "sueded",
        "base-layer-shop",
        "denim-tees",
        "drop-002",
        "drop-003",
        "drop-006",
        "entire-studios-pt2",
        "khy-x-namilia",
        "outerwear",
        "atlein",
        "bottoms",
        "drop-005",
        "khy-x-poster-girl",
        "kylies-closet",
        "shop",
        "best-sellers",
        "besties",
        "khy-x-entire-studios"
      ],
      "cluster_domains": [
        "www.khy.com",
        "khy.co.il"
      ],
      "features": [
        "Shopify POS",
        "Returns Page",
        "Shopify Online Store 2.0",
        "Gift Messaging",
        "New Shopify Checkout (2022)",
        "Accepts Gift Cards",
        "Contact Page",
        "Tracking or Returns",
        "International Shipping",
        "FAQ Page",
        "Brand Advocate Page",
        "Has Blog"
      ],
      "shipping_carriers": [
        "UPS"
      ],
      "ships_to_countries": [
        "Andorra",
        "United Arab Emirates",
        "Antigua and Barbuda",
        "Anguilla",
        "Albania",
        "Armenia",
        "Angola",
        "Argentina",
        "Austria",
        "Australia",
        "Aruba",
        "Azerbaijan",
        "Bosnia and Herzegovina",
        "Barbados",
        "Bangladesh",
        "Belgium",
        "Burkina Faso",
        "Bulgaria",
        "Bahrain",
        "Burundi",
        "Benin",
        "Saint Barthélemy",
        "Bermuda",
        "Brunei Darussalam",
        "Bolivia (Plurinational State of)",
        "Brazil",
        "Bahamas",
        "Bhutan",
        "Botswana",
        "Belize",
        "Canada",
        "Congo",
        "Switzerland",
        "Côte d'Ivoire",
        "Cook Islands",
        "Chile",
        "Cameroon",
        "China",
        "Colombia",
        "Costa Rica",
        "Cabo Verde",
        "Curaçao",
        "Cyprus",
        "Czech Republic",
        "Germany",
        "Djibouti",
        "Denmark",
        "Dominica",
        "Dominican Republic",
        "Algeria",
        "Ecuador",
        "Estonia",
        "Egypt",
        "Spain",
        "Ethiopia",
        "Finland",
        "Fiji",
        "Falkland Islands (the) [Malvinas]",
        "Faroe Islands",
        "France",
        "Gabon",
        "United Kingdom",
        "Grenada",
        "Georgia",
        "French Guiana",
        "Guernsey",
        "Ghana",
        "Gibraltar",
        "Greenland",
        "Gambia",
        "Guinea",
        "Guadeloupe",
        "Equatorial Guinea",
        "Greece",
        "Guatemala",
        "Guinea-Bissau",
        "Guyana",
        "Hong Kong",
        "Honduras",
        "Croatia",
        "Haiti",
        "Hungary",
        "Indonesia",
        "Ireland",
        "Israel",
        "Isle of Man",
        "India",
        "Iceland",
        "Italy",
        "Jersey",
        "Jamaica",
        "Jordan",
        "Japan",
        "Kenya",
        "Kyrgyzstan",
        "Cambodia",
        "Kiribati",
        "Comoros",
        "Saint Kitts and Nevis",
        "Korea (the Republic of)",
        "Kuwait",
        "Cayman Islands",
        "Kazakhstan",
        "Lao People's Democratic Republic",
        "Lebanon",
        "Saint Lucia",
        "Liechtenstein",
        "Sri Lanka",
        "Liberia",
        "Lesotho",
        "Lithuania",
        "Luxembourg",
        "Latvia",
        "Morocco",
        "Monaco",
        "Moldova (the Republic of)",
        "Montenegro",
        "Saint Martin (French part)",
        "Madagascar",
        "Macedonia (the former Yugoslav Republic of)",
        "Mongolia",
        "Macao",
        "Martinique",
        "Mauritania",
        "Montserrat",
        "Malta",
        "Mauritius",
        "Maldives",
        "Malawi",
        "Mexico",
        "Malaysia",
        "Mozambique",
        "Namibia",
        "New Caledonia",
        "Nigeria",
        "Nicaragua",
        "Netherlands",
        "Norway",
        "Nepal",
        "Nauru",
        "Niue",
        "New Zealand",
        "Oman",
        "Panama",
        "Peru",
        "French Polynesia",
        "Papua New Guinea",
        "Philippines",
        "Pakistan",
        "Poland",
        "Portugal",
        "Paraguay",
        "Qatar",
        "Réunion",
        "Romania",
        "Serbia",
        "Rwanda",
        "Saudi Arabia",
        "Solomon Islands",
        "Seychelles",
        "Sweden",
        "Singapore",
        "Saint Helena, Ascension and Tristan da Cunha",
        "Slovenia",
        "Slovakia",
        "Sierra Leone",
        "San Marino",
        "Senegal",
        "Suriname",
        "Sao Tome and Principe",
        "El Salvador",
        "Sint Maarten (Dutch part)",
        "Swaziland",
        "Turks and Caicos Islands",
        "Chad",
        "Togo",
        "Thailand",
        "Timor-Leste",
        "Turkmenistan",
        "Tunisia",
        "Tonga",
        "Trinidad and Tobago",
        "Tuvalu",
        "Taiwan",
        "Tanzania, United Republic of",
        "Uganda",
        "United States",
        "Uruguay",
        "Uzbekistan",
        "Holy See",
        "Saint Vincent and the Grenadines",
        "Venezuela (Bolivarian Republic of)",
        "Virgin Islands (British)",
        "Vietnam",
        "Vanuatu",
        "Wallis and Futuna",
        "Samoa",
        "Mayotte",
        "South Africa",
        "Zambia",
        "Zimbabwe"
      ],
      "rank_percentile": 0.0004,
      "collection_count": 92,
      "rank": 57,
      "latitude": 34.0211224,
      "longitude": -118.3964665,
      "estimated_page_views": 1234681,
      "estimated_sales": 141024230,
      "estimated_sales_yearly": 1692290760,
      "estimated_visits": 332867,
      "product_images": 5353,
      "product_images_created_365": 4559,
      "product_images_created_90": 503,
      "product_images_created_30": 287,
      "employee_count": 31,
      "cc_rank": 1593206,
      "cc_centrality": 865184,
      "product_count": 686,
      "max_price": 50000,
      "max_price_usd": 50000,
      "max_weight": 9979,
      "monthly_app_spend": 3400,
      "min_price": 2500,
      "min_price_usd": 2500,
      "min_weight": 14,
      "variant_count": 6129,
      "vendor_count": 10,
      "avg_price": 9168,
      "avg_price_usd": 9168,
      "avg_weight": 573,
      "platform_rank": 1
    }
  ]
}

List App Reviews for Domain

Retrieves a list of App reviews associated with a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).

Note that reviews are only available for Shopify apps.

Plan Rate Limit
Enterprise 20 requests/second
Pro and Elite 5 requests/second
Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/www.khy.com/app_reviews'

Example Response

{
  "reviews": [
    {
      "app": {
        "app_store_url": "https://apps.shopify.com/marsello",
        "name": "Marsello: Omnichannel Loyalty",
        "vendor_name": "Marsello",
        "id": "1.marsello"
      },
      "updated_at": "2025-03-21T00:00:00Z",
      "body": "Customer service is absolutely terrible. The experience has been disheartening and only foreshadows what is to come if we stay with them. We just signed up with Marsello and as soon as we became a paying customer, we couldn't get a hold of anyone. BEFORE signing up, I met with several staff members and they all seemed quite eager to help. Support does reply to our emails but the response time is usually about 6 or more hours. Even then, you reply and they don't get back to you for another few hours with a very generic response. How do you expect a business owner to sit tight while being kept in the dark? Customers have already signed up and waiting to use our loyalty program, only to be told it isn't working. This has a negative impact and only serves to discredit our business in the eyes of our customers. 'Ghosting us' speaks to their lack of professionalism as a whole. Their point system is buggy and it is evident. They haven't ironed out all the kinks. \nEDIT:\nThe issue was escalated and the technical team took over. This are up and running now. \nEDIT:\nNow we are experiencing the same issue again and we are being ignored.",
      "merchant_name": "Mr. Halal Burger",
      "domains": [
        {
          "platform_domain": "8efd3b-27.myshopify.com",
          "name": "mrhalalburger.com",
          "platform_rank": 177109
        }
      ],
      "rating": 1
    }
  ]
}

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
aq

Filters the results to Domains matching the Advanced Search.

cursor

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.

f:an

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.

f:ar

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.

f:an:op

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.

f:administrative_area_level_1

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.

f:administrative_area_level_1:op

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.

f:app_installed_at

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).

f:app_installed_at:min

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).

f:app_installed_at:max

The maximum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App after the provided minimum date (in f:app_installed_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).

f:app_uninstalled_at

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).

f:app_uninstalled_at:min

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).

f:app_uninstalled_at:max

The maximum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App after the provided minimum date (in f:app_uninstalled_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).

f:avgppmin

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.

f:avgppmax

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.

f:cat

Filters the results to Domains that have the given category.

Multiple values must be comma-separated.

f:cat:op

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.

f:cc

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.

f:cc:op

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.

f:city

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.

f:city:op

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.

f:cratmin

Filters the results to Domains that were created on or after the given time.

f:cratmax

Filters the results to Domains that were created on or before the given time.

f:cratyyyymm

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.

f:cratyyyymm:op

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.

f:cratyyyymmdd

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.

f:cratyyyymmdd:op

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.

f:curr

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.

f:curr:op

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.

f:ds

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.

f:ds:op

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.

f:empcmin

Filters the results to Domains that have employee count greater than or equal to the provided integer value.

f:empcmax

Filters the results to Domains that have employee count less than or equal to the provided integer value.

f:ermin

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.

f:ermax

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.

f:features

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.

f:features:op

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.

f:ismy

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).

f:ismy:op

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.

f:it

Filters results to Domains that have contact information of the given type(s).

Valid values are:

  • email
  • facebook
  • facebookgroup
  • instagram
  • phone
  • pinterest
  • snapchat
  • twitter
  • youtube

Multiple values must be comma-separated.

f:it:op

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.

f:lang

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.

f:lang:op

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.

f:last_plan_change_at:min

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.

f:last_plan_change_at:max

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.

f:last_platform

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
  • cartzy
  • ccvshop
  • celerant
  • centra
  • cityhive
  • cleverbridge
  • cloov
  • coachannel
  • coachy
  • cococart
  • codshopy
  • colormeshop
  • commentsold
  • commerce7
  • commercehq
  • commercev3
  • convertize
  • corksy
  • crystalcommerce
  • cscart
  • custom
  • cyberbiz
  • dealerspike
  • deliverybizpro
  • demandware
  • digitalriver
  • dividenl
  • dooca
  • dotpe
  • dropify
  • drupal
  • dukaan
  • dutchieplus
  • e37
  • easymyshop
  • easyorders
  • easystore
  • ebisumart
  • ecbeing
  • eccube
  • ecellar
  • ecforce
  • ecomz
  • ecwid
  • elevar
  • empretienda
  • epages
  • eproshopping
  • etsypattern
  • f1
  • fastcommerce
  • fbits
  • fenicio
  • finqu
  • fourthwall
  • funnelish
  • funpinpin
  • 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
  • marketplacer
  • 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
  • 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
  • unipage
  • vendre
  • vinsuite
  • virtuemart
  • viskan
  • visualsoft
  • vnda
  • volusion
  • vtex
  • w2repeat
  • waca
  • wbuy
  • webflow
  • webmercs
  • weeblycommerce
  • weedmaps
  • wikinggruppen
  • winedirect
  • wix
  • wizishop
  • woocommerce
  • workarea
  • wshop
  • wuilt
  • wx3
  • xonic
  • xshoppy
  • yahoo
  • yampi
  • youcan
  • zammit
  • zencart
  • zenler
  • zid
  • zohocommerce
  • zupain
  • zvendo
  • zyda

Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.

f:last_platform:op

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.

f:last_platform_change_at:min

Filters the results to Domains that changed ecommerce platforms on or after the provided date.

f:last_platform_change_at:max

Filters the results to Domains that changed ecommerce platforms on or before the provided date.

f:lids

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.

f:lids:op

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.

f:masmin

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.

f:masmax

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.

f:max_product_published_at:min

Filters the results to Domains whose most recently published product is equal to or after the provided date.

f:max_product_published_at:max

Filters the results to Domains whose most recently published product is equal to or before the provided date.

f:mmv

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.

f:mmv:op

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.

f:mv

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.

f:mv:op

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.

f:pinterestfollowersmin

Filters the results to Domains that have a minimum number of Pinterest followers.

f:pinterestfollowersmax

Filters the results to Domains that have a maximum number of Pinterest followers.

f:pinterestfollowers30dmin

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.

f:pinterestfollowers30dmax

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.

f:pinterestfollowers30dpmin

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.

f:pinterestfollowers30dpmax

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.

f:plan

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.

f:plan:op

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.

f:p

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
  • cartzy
  • ccvshop
  • celerant
  • centra
  • cityhive
  • cleverbridge
  • cloov
  • coachannel
  • coachy
  • cococart
  • codshopy
  • colormeshop
  • commentsold
  • commerce7
  • commercehq
  • commercev3
  • convertize
  • corksy
  • crystalcommerce
  • cscart
  • custom
  • cyberbiz
  • dealerspike
  • deliverybizpro
  • demandware
  • digitalriver
  • dividenl
  • dooca
  • dotpe
  • dropify
  • drupal
  • dukaan
  • dutchieplus
  • e37
  • easymyshop
  • easyorders
  • easystore
  • ebisumart
  • ecbeing
  • eccube
  • ecellar
  • ecforce
  • ecomz
  • ecwid
  • elevar
  • empretienda
  • epages
  • eproshopping
  • etsypattern
  • f1
  • fastcommerce
  • fbits
  • fenicio
  • finqu
  • fourthwall
  • funnelish
  • funpinpin
  • 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
  • marketplacer
  • 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
  • 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
  • unipage
  • vendre
  • vinsuite
  • virtuemart
  • viskan
  • visualsoft
  • vnda
  • volusion
  • vtex
  • w2repeat
  • waca
  • wbuy
  • webflow
  • webmercs
  • weeblycommerce
  • weedmaps
  • wikinggruppen
  • winedirect
  • wix
  • wizishop
  • woocommerce
  • workarea
  • wshop
  • wuilt
  • wx3
  • xonic
  • xshoppy
  • yahoo
  • yampi
  • youcan
  • zammit
  • zencart
  • zenler
  • zid
  • zohocommerce
  • zupain
  • zvendo
  • zyda

Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.

f:p:op

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.

f:pcmin

Filters the results to Domains that have product count greater than or equal to the provided integer value.

f:pcmax

Filters the results to Domains that have product count less than or equal to the provided integer value.

f:prankmin

Filters the results to Domains that have platform rank greater than or equal to the provided integer value.

f:prankmax

Filters the results to Domains that have platform rank less than or equal to the provided integer value.

f:prankpmin

Filters the results to Domains that have platform rank percentile greater than or equal to the provided float value.

f:prankpmax

Filters the results to Domains that have platform rank percentile less than or equal to the provided float value.

f:rankmin

Filters the results to Domains that have rank greater than or equal to the provided integer value.

f:rankmax

Filters the results to Domains that have rank less than or equal to the provided integer value.

f:rankpmin

Filters the results to Domains that have rank percentile greater than or equal to the provided float value.

f:rankpmax

Filters the results to Domains that have rank percentile less than or equal to the provided float value.

f:reg

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.

f:reg:op

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.

f:scs

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

f:scs:op

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.

f:sreg

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.

f:sreg:op

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.

f:stcs

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.

f:stcs:op

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.

f:tags

Filters the results to Domains that have the given tags (e.g., "Print on Demand").

Multiple values must be comma-separated.

f:tags:op

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.

f:tech

Filters the results to Domains that have the given technology installed (e.g., "Facebook Pixel").

Multiple values must be comma-separated.

f:tech:op

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.

f:tech_installed_at

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).

f:tech_installed_at:min

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).

f:tech_installed_at:max

The maximum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology after the provided minimum date (in f:tech_installed_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).

f:tech_uninstalled_at

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).

f:tech_uninstalled_at:min

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).

f:tech_uninstalled_at:max

The maximum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology after the provided minimum date (in f:tech_uninstalled_at:min). Values must be specified in JSON format (example: 2012-04-23T18:25:43.511Z).

f:tld

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.

f:tld:op

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.

f:tn

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.

f:tn:op

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.

f:ts

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.

f:ts:op

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.

f:tvn

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.

f:tvn:op

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.

f:twitterfollowersmin

Filters the results to Domains that have a minimum number of Twitter followers.

f:twitterfollowersmax

Filters the results to Domains that have a maximum number of Twitter followers.

f:twitterfollowers30dmin

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.

f:twitterfollowers30dmax

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.

f:twitterfollowers30dpmin

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.

f:twitterfollowers30dpmax

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.

f:youtubefollowersmin

Filters the results to Domains that have a minimum number of YouTube followers.

f:youtubefollowersmax

Filters the results to Domains that have a maximum number of YouTube followers.

f:youtubefollowers30dmin

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.

f:youtubefollowers30dmax

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.

f:youtubefollowers30dpmin

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.

f:youtubefollowers30dpmax

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.

fields

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.

page_size

The number of Domains to return in a single query. Default: 50, Max: 5000.

sort

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)

q

Filters Domains based on a text query. e.g., a query for "vape" will return only Domains that matching the word "vape" in one of the following fields:

  • Domain name (prefix match only)
  • Domain top-level domain plus one (prefix match only)
  • Domain aliases (prefix match only)
  • Merchant name
  • Home page title tag
  • Home page meta description tag
  • Home page meta keywords tag
  • Technologies
  • App names
  • Location
  • Social media account names

Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain?f:cc=US&f:cratyyyymm=2018-11&page_size=2'

Search requests can also be triggered via HTTP POST.

$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:cc":"US","f:cratyyyymm":"2018-11"}' 'https://storeleads.app/json/api/v1/all/domain'

Example Response

{
  "domains": [
    {
      "theme": {
        "name": "p\u0026p - release v4.3.1",
        "style": "Unknown",
        "vendor": "Unknown",
        "version": "4.2.9"
      },
      "alternates": {
        "en-au": "petalandpup.com.au",
        "en-us": "petalandpup.com",
        "x-default": "petalandpup.com"
      },
      "trustpilot": {
        "review_count": 1,
        "avg_rating": 3.2
      },
      "plan": "Shopify Plus",
      "cluster_best_ranked": "petalandpup.com",
      "city": "Boston",
      "last_updated_at": "2025-04-10T00:00:00",
      "subregion": "Northern America",
      "contact_page": "https://petalandpup.com/pages/contact-us",
      "country_code": "US",
      "currency_code": "USD",
      "title": "Petal \u0026 Pup - Shop USA Women's Clothing \u0026 Fashion Online - Petal \u0026 Pup USA",
      "administrative_area_level_1": "Massachusetts",
      "state": "Active",
      "icon": "https://petalandpup.com/cdn/shop/files/Frame_1013_32x.png?v=1697226274",
      "brand_advocate_page": "https://petalandpup.com/pages/ambassador-program",
      "faq_page": "https://petalandpup.com/pages/faqs",
      "career_page": "https://petalandpup.com/pages/careers",
      "sizing_page": "https://petalandpup.com/pages/sizing-chart",
      "returns_page": "https://petalandpup.com/pages/returns",
      "region": "Americas",
      "language_code": "en",
      "about_us": "https://auspost.com.au/about-us/news-media/important-updates/coronavirus/coronavirus-international-updates#international",
      "tracking_page": "https://petalandpup.com/pages/shipping",
      "platform_domain": "petal-and-pup-usa.myshopify.com",
      "last_plan_change_at": "2025-03-06T00:00:00",
      "platform": "shopify",
      "location": "Boston, MA, USA",
      "og_image": "https://cdn.shopify.com/s/files/1/0266/8855/3034/files/logo.png?height=628\u0026pad_color=fff\u0026v=1613727840\u0026width=1200",
      "max_product_published_at": "2025-04-07T00:00:00",
      "merchant_name": "Petal \u0026 Pup USA",
      "avg_price_formatted": "$68.87",
      "created_at": "2018-11-30T00:00:00",
      "name": "petalandpup.com",
      "tld1": "petalandpup.com",
      "description": "Petal \u0026 Pup - the ultimate online fashion destination for affordable, on trend, young women's fashion. Shop dresses, jumpsuits and more. Now with Afterpay and Klarna. Sizes 0 - 12. #petalandpup",
      "contact_info": [
        {
          "source": "/",
          "type": "facebook",
          "value": "https://www.facebook.com/petalandpup"
        },
        {
          "source": "/",
          "type": "instagram",
          "value": "https://www.instagram.com/petalandpup"
        },
        {
          "source": "/",
          "type": "snapchat",
          "value": "https://www.snapchat.com/add/petalandpup"
        },
        {
          "source": "/",
          "type": "pinterest",
          "value": "https://pinterest.com/petalandpup"
        },
        {
          "description": "Let's Create the Perfect Wardrobe Together ✨💐",
          "followers": 156300,
          "followers_90d": 7124,
          "likes": 764700,
          "source": "/",
          "type": "tiktok",
          "value": "https://www.tiktok.com/@petalandpup"
        },
        {
          "source": "/pages/careers",
          "type": "linkedin",
          "value": "https://www.linkedin.com/company/petal-pup"
        },
        {
          "source": "/pages/terms-conditions",
          "type": "email",
          "value": "contactus@petalandpup.com"
        }
      ],
      "aliases": [
        "www.petalandpup.zip"
      ],
      "apps": [
        {
          "installed_at": "2023-12-25T22:27:41Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/accessibly-app",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Make your store more accessible and inclusive with Accessibly. We help you with ADA/WCAG compliance.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/eaa87116bccafa4ba6349f0628498edb/icon/CJX_77f0lu8CEAE=.png",
          "name": "Accessibly",
          "token": "accessibly-app",
          "platform": "shopify",
          "vendor_name": "On The Map Marketing",
          "vendor_url": "https://apps.shopify.com/partners/on-the-map-marketing",
          "vendor_email": "hello@accessiblyapp.com",
          "vendor_website": "https://accessiblyapp.com/",
          "vendor_address": "200 SE 1st St #502, Miami, FL, 33131, US",
          "id": "1.accessibly-app",
          "created_at": "2019-09-13T00:00:00",
          "plans": [
            {
              "name": "Standard",
              "monthly_cost": "$5/month",
              "monthly_cost_cents": 500
            },
            {
              "name": "Premium",
              "monthly_cost": "$25/month",
              "monthly_cost_cents": 2500
            },
            {
              "name": "Enterprise",
              "monthly_cost": "$75/month",
              "monthly_cost_cents": 7500
            }
          ],
          "categories": [
            "accessibility"
          ],
          "review_count": 29,
          "installs": 11619,
          "instp": 0.004598615547191318,
          "installs_30d": 100,
          "installs_90d": 273
        },
        {
          "installed_at": "2022-07-26T22:45:08Z",
          "average_rating": "4.7",
          "app_store_url": "https://apps.shopify.com/address-validator",
          "state": "Active",
          "description": "Use shipping address validation to save money by preventing failed \u0026 delayed deliveries",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/47694bcc580db734557159405f8a95e2/icon/CNboqZD-vYgDEAE=.png",
          "name": "Clearer.io Address Validator",
          "token": "address-validator",
          "platform": "shopify",
          "vendor_name": "RoboTurk",
          "vendor_url": "https://apps.shopify.com/partners/developer-dcf4b0d01a819470",
          "vendor_email": "support@roboturk.co",
          "vendor_website": "https://addressvalidator.com/",
          "vendor_address": "116 Huntington Ave, 15th Floor, Boston, MA, 02116, US",
          "id": "1.address-validator",
          "created_at": "2017-01-04T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "shipping",
            "shipping solutions - other"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Customer accounts\n\n \n \n ReCharge"
          ],
          "review_count": 235,
          "installs": 1855,
          "instp": 0.0007341795197555637,
          "installs_30d": 1845,
          "installs_90d": 44,
          "reviews_30d": 1,
          "reviews_90d": 6
        },
        {
          "installed_at": "2024-04-26T06:04:15Z",
          "average_rating": "4.3",
          "app_store_url": "https://apps.shopify.com/attentive",
          "state": "Active",
          "description": "Attentive's SMS-first platform helps brands engage through two-way, personalized conversations.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/5da194592c59cd145b825b53019db33c/icon/CIKipOGl7-8CEAE=.png",
          "name": "Attentive: SMS + MMS Marketing",
          "token": "attentive",
          "platform": "shopify",
          "vendor_name": "Attentive",
          "vendor_url": "https://apps.shopify.com/partners/attentive-mobile-inc",
          "vendor_email": "integration-questions@attentivemobile.com",
          "vendor_website": "https://www.attentive.com/",
          "vendor_address": "156 5th Ave, Suite 303, New York, NY, 10010, US",
          "id": "1.attentive",
          "created_at": "2020-07-02T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Gorgias\n \n \n Okendo\n \n \n LoyaltyLion\n \n \n Zendesk\n \n \n Rebuy\n \n \n Loop Returns"
          ],
          "review_count": 52,
          "installs": 9986,
          "instp": 0.003952300099341811,
          "installs_30d": 67,
          "installs_90d": 101
        },
        {
          "installed_at": "2019-11-08T16:12:30Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/back-in-stock",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Capture Lost Sales from Sold Out Products with Automated Back in Stock Alerts",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/08346a36a0a313120feec14003bedbc3/icon/CJbKmrvYgYwDEAE=.png",
          "name": "AMP ‑ Back in Stock",
          "token": "back-in-stock",
          "platform": "shopify",
          "vendor_name": "HEL SG PTE LTD",
          "vendor_url": "https://apps.shopify.com/partners/yellow-robot",
          "vendor_email": "support@backinstock.org",
          "vendor_website": "https://backinstock.org/",
          "vendor_address": "90 Eu Tong Sen Street, #03-02, Singapore, 059811, SG",
          "id": "1.back-in-stock",
          "created_at": "2011-05-18T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            },
            {
              "name": "Lite Plan",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "Startup",
              "monthly_cost": "$29/month",
              "monthly_cost_cents": 2900
            },
            {
              "name": "Small Business",
              "monthly_cost": "$49/month",
              "monthly_cost_cents": 4900
            }
          ],
          "categories": [
            "stock alerts",
            "email marketing"
          ],
          "integrates_with": [
            "Shopify Flow\n \n \n MailChimp\n \n \n Klaviyo\n \n \n Constant Contact\n \n \n Campaign Monitor\n \n \n Zapier\n \n \n Cross Sell \u0026 Cart Upsell"
          ],
          "review_count": 892,
          "installs": 27250,
          "instp": 0.010785116934414616,
          "installs_30d": -153,
          "installs_90d": -668,
          "reviews_30d": 6,
          "reviews_90d": 5
        },
        {
          "installed_at": "2023-09-05T17:10:57Z",
          "average_rating": "4.5",
          "app_store_url": "https://apps.shopify.com/beansid-verification",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Create secure gated offers in minutes to attract and acquire any closed consumer group.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/f7f1ec49813b4d462b58641ff5e1c836/icon/CL2EhMff3YUDEAE=.png",
          "name": "Beans iD Verification",
          "token": "beansid-verification",
          "platform": "shopify",
          "vendor_name": "Pion",
          "vendor_url": "https://apps.shopify.com/partners/the-beans-group1",
          "vendor_email": "support@studentbeans.com",
          "vendor_website": "https://partner.studentbeans.com",
          "vendor_address": "30A Highgate rd, Unit A Piano Yard, London, ENG, NW5 1NS, GB",
          "id": "1.beansid-verification",
          "created_at": "2022-04-14T00:00:00",
          "plans": [
            {
              "name": "STARTER",
              "monthly_cost": "Free to install"
            },
            {
              "name": "GROWTH",
              "monthly_cost": "$125/month",
              "monthly_cost_cents": 12500
            }
          ],
          "categories": [
            "discounts"
          ],
          "review_count": 11,
          "installs": 853,
          "instp": 0.00033760384385525386,
          "installs_30d": 15,
          "installs_90d": 32
        },
        {
          "installed_at": "2024-09-28T03:51:06Z",
          "average_rating": "4",
          "app_store_url": "https://apps.shopify.com/fashiongo-dropshipping",
          "state": "Active",
          "description": "Expand your product offering without upfront inventory investment.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/b51119800c83c034b205b68af0eb71c6/icon/CNWm2v-64YMDEAE=.png",
          "name": "FASHIONGO DROPSHIPPING",
          "token": "fashiongo-dropshipping",
          "platform": "shopify",
          "vendor_name": "NHN GLOBAL",
          "vendor_url": "https://apps.shopify.com/partners/nhn-global",
          "vendor_email": "techsupport@fashiongo.net",
          "id": "1.fashiongo-dropshipping",
          "created_at": "2022-02-04T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "dropshipping"
          ],
          "review_count": 104,
          "installs": 3718,
          "instp": 0.001471525312372607,
          "installs_30d": -13,
          "installs_90d": -74,
          "reviews_90d": 2
        },
        {
          "installed_at": "2020-05-01T10:55:48Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/foursixty",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Create shoppable Instagram, TikTok, and UGC galleries. Boost desire and sales with social proof.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/43b401d6bc9caa05ff0f555ee2643f79/icon/CLS3urz0lu8CEAE=.jpg",
          "name": "Foursixty Shoppable Social UGC",
          "token": "foursixty",
          "platform": "shopify",
          "vendor_name": "Foursixty",
          "vendor_url": "https://apps.shopify.com/partners/foursixty",
          "vendor_email": "helpme@foursixty.com",
          "vendor_website": "http://www.foursixty.com/",
          "vendor_address": "1800 - 510 West Georgia Street, Vancouver, BC, V6B 0M3, CA",
          "id": "1.foursixty",
          "created_at": "2014-12-15T00:00:00",
          "plans": [
            {
              "name": "Essential",
              "monthly_cost": "$90/month",
              "monthly_cost_cents": 9000
            },
            {
              "name": "Complete",
              "monthly_cost": "$300/month",
              "monthly_cost_cents": 30000
            },
            {
              "name": "Complete Plus",
              "monthly_cost": "$500/month",
              "monthly_cost_cents": 50000
            }
          ],
          "categories": [
            "social proof",
            "image gallery"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Klaviyo\n \n \n Shop Minis\n \n \n Instagram\n \n \n TikTok"
          ],
          "review_count": 182,
          "installs": 2326,
          "instp": 0.0009205938344751704,
          "installs_30d": -11,
          "installs_90d": -62
        },
        {
          "installed_at": "2021-08-13T04:32:35Z",
          "average_rating": "5",
          "app_store_url": "https://apps.shopify.com/gatsby",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Faster list growth is just the beginning. Convert Instagram followers into email and SMS subscribers",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/426acd6662624da1bcefd29af16215e1/icon/CIO35cmA8oQDEAE=.png",
          "name": "Gatsby: Convert Your Followers",
          "token": "gatsby",
          "platform": "shopify",
          "vendor_name": "Gatsby",
          "vendor_url": "https://apps.shopify.com/partners/gatsby2",
          "vendor_email": "hello@gatsby.ai",
          "vendor_website": "https://gatsby.ai",
          "vendor_address": "3152 Levante Street, Carlsbad, CA, 92009, US",
          "id": "1.gatsby",
          "created_at": "2017-10-18T00:00:00",
          "plans": [
            {
              "name": "Starter",
              "monthly_cost": "$229/month",
              "monthly_cost_cents": 22900
            },
            {
              "name": "Standard",
              "monthly_cost": "$579/month",
              "monthly_cost_cents": 57900
            }
          ],
          "categories": [
            "email marketing",
            "giveaways and contests"
          ],
          "integrates_with": [
            "Shopify POS\n\n \n \n Checkout\n\n \n \n Klaviyo\n \n \n Yotpo\n \n \n LoyaltyLion\n \n \n Attentive\n \n \n Stamped\n \n \n Smile"
          ],
          "review_count": 139,
          "installs": 143,
          "instp": 0.00005659712739894642,
          "installs_30d": -4,
          "installs_90d": -19
        },
        {
          "installed_at": "2023-01-20T18:02:41Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/geoip-country-redirect",
          "state": "Active",
          "free_trial_duration": "360h0m0s",
          "description": "Automatically Redirect customers to their regional stores based on Geolocation.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/6509efbd9402fe5c6fa18cd1b7bd5aa7/icon/CNTzhr30lu8CEAE=.png",
          "name": "GeoIP Country Redirect",
          "token": "geoip-country-redirect",
          "platform": "shopify",
          "vendor_name": "Spice Gems",
          "vendor_url": "https://apps.shopify.com/partners/developer-9bead642a73db7a9",
          "vendor_email": "help@spicegems.com",
          "vendor_website": "http://spicegems.com/spicegems-contact-us/",
          "vendor_address": "6-A, Industrial Estate, NRC, Kota, RJ, 324007, IN",
          "id": "1.geoip-country-redirect",
          "created_at": "2016-09-21T00:00:00",
          "plans": [
            {
              "name": "Basic",
              "monthly_cost": "$7.50/month",
              "monthly_cost_cents": 750
            },
            {
              "name": "Advanced",
              "monthly_cost": "$19.99/month",
              "monthly_cost_cents": 1998
            },
            {
              "name": "Plus",
              "monthly_cost": "$49.99/month",
              "monthly_cost_cents": 4999
            }
          ],
          "categories": [
            "geolocation",
            "internationalization - other"
          ],
          "review_count": 124,
          "installs": 2958,
          "instp": 0.0011707293905320526,
          "installs_30d": 20,
          "installs_90d": 60,
          "reviews_90d": 1
        },
        {
          "installed_at": "2023-01-05T22:38:19Z",
          "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 Facebook Business Manager\n \n \n Pinterest For Business\n \n \n Microsoft Advertising"
          ],
          "review_count": 6752,
          "installs": 51143,
          "instp": 0.020241586619330888,
          "installs_30d": -730,
          "installs_90d": -1812,
          "reviews_30d": 60,
          "reviews_90d": 158
        },
        {
          "installed_at": "2024-10-09T21:12:29Z",
          "average_rating": "4.6",
          "app_store_url": "https://apps.shopify.com/gtm-datalayer-by-elevar",
          "state": "Active",
          "free_trial_duration": "360h0m0s",
          "description": "Never miss a conversion with Elevar's Server-Side tracking. Improve ad ROAS and lower your CPMs.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/e6748a47b626678883beaf91f28ca7e3/icon/COywqozq1vwCEAE=.jpeg",
          "name": "Elevar Conversion Tracking",
          "token": "gtm-datalayer-by-elevar",
          "platform": "shopify",
          "vendor_name": "Elevar",
          "vendor_url": "https://apps.shopify.com/partners/elevar",
          "vendor_email": "help@getelevar.com",
          "vendor_website": "https://www.getelevar.com/",
          "vendor_address": "520 Folly Road, Suite 25, Charleston, SC, 29412, US",
          "id": "1.gtm-datalayer-by-elevar",
          "created_at": "2018-09-26T00:00:00",
          "plans": [
            {
              "name": "Elevar Starter",
              "monthly_cost": "Free to install"
            },
            {
              "name": "Elevar Essentials",
              "monthly_cost": "$200/month",
              "monthly_cost_cents": 20000
            },
            {
              "name": "Elevar Growth",
              "monthly_cost": "$450/month",
              "monthly_cost_cents": 45000
            },
            {
              "name": "Elevar Business",
              "monthly_cost": "$950/month",
              "monthly_cost_cents": 95000
            }
          ],
          "categories": [
            "ads",
            "analytics"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Google Ads and GA4\n \n \n Web Pixel API\n \n \n Facebook Conversion API (CAPI)\n \n \n iubenda Onetrust and Cookiebot\n \n \n Google Tag Manager (GTM)\n \n \n Klaviyo"
          ],
          "review_count": 162,
          "installs": 8152,
          "instp": 0.0032264320458476312,
          "installs_30d": 24,
          "installs_90d": -21,
          "reviews_30d": 3,
          "reviews_90d": 8
        },
        {
          "installed_at": "2020-10-03T05:56:05Z",
          "average_rating": "4.2",
          "app_store_url": "https://apps.shopify.com/helpdesk",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Streamline your customer experience with automation and AI",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/d783d0d0ded4ab7a13c20f47533819a3/icon/CNOe1Y-4vocDEAE=.png",
          "name": "Gorgias: Helpdesk, Chat \u0026 FAQ",
          "token": "helpdesk",
          "platform": "shopify",
          "vendor_name": "Gorgias Inc.",
          "vendor_url": "https://apps.shopify.com/partners/gorgias",
          "vendor_email": "support@gorgias.com",
          "vendor_website": "https://www.gorgias.com",
          "vendor_address": "180 Sansome Street, Suite 1800, San Francisco, CA, 94104, US",
          "id": "1.helpdesk",
          "created_at": "2017-03-01T00:00:00",
          "plans": [
            {
              "name": "Starter plan",
              "monthly_cost": "$10/month",
              "monthly_cost_cents": 1000
            },
            {
              "name": "Basic plan",
              "monthly_cost": "$60/month",
              "monthly_cost_cents": 6000
            },
            {
              "name": "Pro plan",
              "monthly_cost": "$360/month",
              "monthly_cost_cents": 36000
            },
            {
              "name": "Advanced plan",
              "monthly_cost": "$900/month",
              "monthly_cost_cents": 90000
            }
          ],
          "categories": [
            "chat",
            "helpdesk"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify Flow\n \n \n Klaviyo\n \n \n Yotpo\n \n \n Attentive\n \n \n Recharge\n \n \n Aircall\n \n \n 20+ Integrations"
          ],
          "review_count": 717,
          "installs": 21027,
          "instp": 0.008322152432291233,
          "installs_30d": 413,
          "installs_90d": 907,
          "reviews_30d": 3,
          "reviews_90d": 6
        },
        {
          "installed_at": "2022-07-20T02:04:43Z",
          "average_rating": "2.5",
          "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": "629 N. High St., Suite 300, 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": 221,
          "installs": 181673,
          "instp": 0.07190328619544611,
          "installs_30d": 6909,
          "installs_90d": 15948,
          "reviews_30d": 2,
          "reviews_90d": 9
        },
        {
          "installed_at": "2019-12-27T17:59:57Z",
          "average_rating": "4.6",
          "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 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": 3427,
          "installs": 358411,
          "instp": 0.14185337781946702,
          "installs_30d": 6234,
          "installs_90d": 17625,
          "reviews_30d": 86,
          "reviews_90d": 253
        },
        {
          "installed_at": "2021-10-29T12:28:11Z",
          "average_rating": "4.7",
          "app_store_url": "https://apps.shopify.com/loop-returns",
          "state": "Active",
          "free_trial_duration": "696h0m0s",
          "description": "Automate your returns management to reduce costs, retain more revenue, and drive customer loyalty.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/fb481cc20acd47c8418668393630e4b8/icon/CJqxnKOm6vACEAE=.png",
          "name": "Loop Returns \u0026 Exchanges",
          "token": "loop-returns",
          "platform": "shopify",
          "vendor_name": "Loop",
          "vendor_url": "https://apps.shopify.com/partners/loop1",
          "vendor_email": "support@loopreturns.com",
          "vendor_website": "https://www.loopreturns.com/",
          "vendor_address": "PO Box 16250, Columbus, OH, 43126, US",
          "id": "1.loop-returns",
          "created_at": "2021-05-27T00:00:00",
          "plans": [
            {
              "name": "Offset",
              "monthly_cost": "Free"
            },
            {
              "name": "Essential",
              "monthly_cost": "$155/month",
              "monthly_cost_cents": 15500
            },
            {
              "name": "Advanced",
              "monthly_cost": "$340/month",
              "monthly_cost_cents": 34000
            }
          ],
          "categories": [
            "returns and exchanges",
            "order tracking"
          ],
          "integrates_with": [
            "Shopify POS\n\n \n \n Checkout\n\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Shiphero\n \n \n NetSuite\n \n \n Attentive\n \n \n Global-E"
          ],
          "review_count": 259,
          "installs": 5207,
          "instp": 0.002060847848715482,
          "installs_30d": 73,
          "installs_90d": -5,
          "reviews_30d": 13,
          "reviews_90d": 53
        },
        {
          "installed_at": "2024-01-09T07:34:48Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/multi-store-hreflang-tags",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Optimize hreflang tags for SEO even with multiple accounts, Markets, or URLs.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/1a6f384fb19013d6232dbbc87457053e/icon/CPbH9ZX9oe8CEAE=.png",
          "name": "Digital Darts: Hreflang Tags",
          "token": "multi-store-hreflang-tags",
          "platform": "shopify",
          "vendor_name": "Digital Darts",
          "vendor_url": "https://apps.shopify.com/partners/digitaldarts",
          "vendor_email": "support@digitaldarts.com.au",
          "vendor_website": "https://www.digitaldarts.com.au",
          "vendor_address": "Suite 196 58-62 Water Street, South Toowoomba, QLD, 4350, AU",
          "id": "1.multi-store-hreflang-tags",
          "created_at": "2020-12-22T00:00:00",
          "plans": [
            {
              "name": "Standard",
              "monthly_cost": "$27/month",
              "monthly_cost_cents": 2700
            }
          ],
          "categories": [
            "seo",
            "internationalization - other"
          ],
          "review_count": 17,
          "installs": 373,
          "instp": 0.00014762747216648262,
          "installs_30d": 9,
          "installs_90d": 42
        },
        {
          "installed_at": "2022-10-05T03:28:15Z",
          "average_rating": "4.5",
          "app_store_url": "https://apps.shopify.com/nosto-personalization-for-shopify",
          "state": "Active",
          "description": "Intelligent Commerce Experience Platform helping brands increase online engagement and revenue",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/7dcd5d67bc1a80f90a95094296d29d71/icon/CIDO29HXloUDEAE=.png",
          "name": "Nosto",
          "token": "nosto-personalization-for-shopify",
          "platform": "shopify",
          "vendor_name": "Nosto Solutions Ltd",
          "vendor_url": "https://apps.shopify.com/partners/nosto",
          "vendor_email": "support@nosto.com",
          "vendor_website": "http://nosto.com",
          "vendor_address": "36 West 20th Street 8th Floor, New York, NY, 10010, US",
          "id": "1.nosto-personalization-for-shopify",
          "created_at": "2014-08-26T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "search and filters",
            "upsell and cross-sell"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify Flow\n \n \n Shopify Plus\n \n \n Yotpo\n \n \n Klaviyo\n \n \n Tapcart\n \n \n LoyaltyLion\n \n \n Attentive"
          ],
          "review_count": 77,
          "installs": 1851,
          "instp": 0.000732596383324824,
          "installs_30d": -29,
          "installs_90d": -83
        },
        {
          "installed_at": "2024-04-03T20:57:28Z",
          "average_rating": "4.7",
          "app_store_url": "https://apps.shopify.com/otto",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Instantly schedule promotional images, theme sections, or blocks to go live at just the right time.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/a380770ea2950b961954ecccb62172e4/icon/CIWV9Mf0lu8CEAE=.png",
          "name": "Otto Blocks \u0026 Images Scheduler",
          "token": "otto",
          "platform": "shopify",
          "vendor_name": "Otto by Piric Group",
          "vendor_url": "https://apps.shopify.com/partners/celso-white-llc",
          "vendor_email": "support@ottoscheduler.com",
          "vendor_website": "https://ottoscheduler.com/",
          "vendor_address": "Ismeta Mujezinovica, Tuzla, 75000, BA",
          "id": "1.otto",
          "created_at": "2018-03-09T00:00:00",
          "plans": [
            {
              "name": "Standard",
              "monthly_cost": "$10/month",
              "monthly_cost_cents": 1000
            },
            {
              "name": "Pro",
              "monthly_cost": "$25/month",
              "monthly_cost_cents": 2500
            },
            {
              "name": "Plus",
              "monthly_cost": "$50/month",
              "monthly_cost_cents": 5000
            }
          ],
          "categories": [
            "image gallery",
            "workflow automation"
          ],
          "review_count": 25,
          "installs": 159,
          "instp": 0.00006292967312190546,
          "installs_30d": 5,
          "installs_90d": 8
        },
        {
          "installed_at": "2021-02-04T19:40:52Z",
          "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": "$200/month",
              "monthly_cost_cents": 20000
            },
            {
              "name": "Tapcart Ultimate",
              "monthly_cost": "$400/month",
              "monthly_cost_cents": 40000
            },
            {
              "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": 486,
          "installs": 2527,
          "instp": 0.0010001464401198435,
          "installs_30d": 43,
          "installs_90d": 112,
          "reviews_30d": 2,
          "reviews_90d": 4
        },
        {
          "installed_at": "2022-03-31T03:59:47Z",
          "average_rating": "4.7",
          "app_store_url": "https://apps.shopify.com/swell",
          "state": "Active",
          "description": "Build a customizable, retention-driving loyalty program that offers more than just rewards.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/f693caaaf4c437600611eb42fc8da5d3/icon/CI_cy9bMiocDEAE=.png",
          "name": "Yotpo Loyalty Rewards Referral",
          "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": 2627,
          "installs": 13128,
          "instp": 0.005195853765687893,
          "installs_30d": -137,
          "installs_90d": -406,
          "reviews_30d": 10,
          "reviews_90d": 35
        },
        {
          "installed_at": "2020-05-16T19:08:45Z",
          "average_rating": "4.9",
          "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://swym.it",
          "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
            }
          ],
          "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": 2330,
          "installs": 47446,
          "instp": 0.018778372773219663,
          "installs_30d": 494,
          "installs_90d": 1325,
          "reviews_30d": 21,
          "reviews_90d": 67
        },
        {
          "installed_at": "2023-01-27T19:08:07Z",
          "average_rating": "4.8",
          "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": "http://swym.it/apps/in-stock-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": 667,
          "installs": 23589,
          "instp": 0.00933615131618005,
          "installs_30d": 149,
          "installs_90d": 48
        },
        {
          "installed_at": "2024-05-14T23:31:00Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/yotpo-email-marketing-and-sms",
          "state": "Active",
          "description": "Easily engage with customers and grow your brand with intuitive email \u0026 SMS marketing",
          "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": 8433,
          "installs": 39809,
          "instp": 0.015755769542829777,
          "installs_30d": 1598,
          "installs_90d": 3893,
          "reviews_30d": 26,
          "reviews_90d": 58
        },
        {
          "installed_at": "2022-03-09T23:50:30Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/yotpo-social-reviews",
          "state": "Active",
          "description": "Collect and display user-generated content (UGC) such as Ratings \u0026 Reviews to showcase social proof.",
          "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": 7309,
          "installs": 40629,
          "instp": 0.016080312511131428,
          "installs_30d": -97,
          "installs_90d": -357,
          "reviews_30d": 81,
          "reviews_90d": 30
        }
      ],
      "categories": [
        "/Apparel"
      ],
      "technologies": [
        {
          "installed_at": "2023-03-23T03:59:20Z",
          "name": "Address Validator",
          "description": "Say goodbye to invalid addresses and redelivery fees! Get started in seconds without coding.",
          "vendor_url": "https://addressvalidator.com",
          "icon_url": "https://storeleads.app/img/tech/addressvalidator.png",
          "installs": 1917
        },
        {
          "installed_at": "2020-03-26T10:00:01Z",
          "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",
          "installs": 467542
        },
        {
          "installed_at": "2020-11-10T19:44:37Z",
          "name": "Apple Pay",
          "description": "Make contactless, secure purchases in stores, in apps, and on the web.",
          "vendor_url": "https://www.apple.com/apple-pay",
          "icon_url": "https://storeleads.app/img/tech/apple_pay.png",
          "installs": 1590484
        },
        {
          "installed_at": "2024-02-14T21:18:47Z",
          "name": "Arrive",
          "description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
          "vendor_url": "https://tryarrive.com",
          "icon_url": "https://storeleads.app/img/tech/arrive.png",
          "installs": 2360185
        },
        {
          "installed_at": "2020-10-03T05:56:05Z",
          "name": "Attentive",
          "description": "The most comprehensive text message marketing solution, driving an average of 18.5% of total online revenue for our customers.",
          "vendor_url": "https://www.attentivemobile.com",
          "icon_url": "https://storeleads.app/img/tech/attentive.png",
          "installs": 13164
        },
        {
          "installed_at": "2023-10-27T06:42:46Z",
          "name": "Cloudflare",
          "description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 4473078
        },
        {
          "installed_at": "2021-06-08T15:44:42Z",
          "name": "Cloudflare CDN",
          "description": "Protect and accelerate your websites, apps, and teams.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 3730457
        },
        {
          "installed_at": "2024-10-09T21:12:29Z",
          "name": "Elevar",
          "description": "Marketers, analysts, and Shopify brand owners use Elevar for accurate conversion tracking.",
          "vendor_url": "https://www.getelevar.com",
          "icon_url": "https://storeleads.app/img/tech/elevar.png",
          "installs": 10277
        },
        {
          "installed_at": "2021-08-13T04:32:35Z",
          "name": "Gatsby Influencer Marketing",
          "description": "Gatsby uses integrations and AI to predict your best customer influencers. Source, track, and measure engagements automatically.",
          "vendor_url": "https://www.gatsby.ai",
          "icon_url": "https://storeleads.app/img/tech/gatsby.png",
          "installs": 148
        },
        {
          "installed_at": "2020-10-30T22:02:01Z",
          "name": "Google Pay",
          "description": "Google Pay is the fast, simple way to pay online, in stores and more.",
          "vendor_url": "https://pay.google.com",
          "icon_url": "https://storeleads.app/img/tech/googlepay.png",
          "installs": 1435994
        },
        {
          "installed_at": "2020-10-03T05:56:05Z",
          "name": "Gorgias",
          "description": "Gorgias provides flawless customer service for ecommerce stores",
          "vendor_url": "https://www.gorgias.com/",
          "icon_url": "https://storeleads.app/img/tech/gorgias.png",
          "installs": 23170
        },
        {
          "installed_at": "2022-07-20T02:04:43Z",
          "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",
          "installs": 238067
        },
        {
          "installed_at": "2020-03-26T10:00:01Z",
          "name": "Klaviyo",
          "description": "Klaviyo is the growth marketing platform built for online businesses.",
          "vendor_url": "https://www.klaviyo.com/",
          "icon_url": "https://storeleads.app/img/tech/klaviyo.png",
          "installs": 450741
        },
        {
          "installed_at": "2025-02-28T10:46:41Z",
          "name": "LinkShare",
          "description": "Discover new customers and increase conversions with the Rakuten LinkShare affiliate network.",
          "vendor_url": "https://rakutenadvertising.com/content/linkshare",
          "icon_url": "https://storeleads.app/img/tech/rakuten.png",
          "installs": 5550
        },
        {
          "installed_at": "2021-07-03T04:00:01Z",
          "name": "Loop Returns",
          "description": "Loop is the returns solution built to help Shopify's top brands create lasting relationships.",
          "vendor_url": "https://loopreturns.com",
          "icon_url": "https://storeleads.app/img/tech/loopreturns.png",
          "installs": 5395
        },
        {
          "installed_at": "2022-10-05T03:28:15Z",
          "name": "Nosto",
          "description": "Notso delivers a personal touch at scale with the world's leading AI-powered personalization platform for digital commerce and retail.",
          "vendor_url": "https://www.nosto.com",
          "icon_url": "https://storeleads.app/img/tech/nosto.png",
          "installs": 2501
        },
        {
          "installed_at": "2023-01-13T16:15:47Z",
          "name": "OneTrust Cookie Consent",
          "description": "Cookie compliance and consent management made easier.",
          "vendor_url": "https://www.onetrust.com/products/cookie-consent",
          "icon_url": "https://storeleads.app/img/tech/onetrust.png",
          "installs": 27225
        },
        {
          "installed_at": "2020-11-07T23:35:21Z",
          "name": "PayPal Express Checkout",
          "description": "Add PayPal to your existing checkout.",
          "vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
          "icon_url": "https://storeleads.app/img/tech/paypal.png",
          "installs": 1424130
        },
        {
          "installed_at": "2020-08-05T10:21:01Z",
          "name": "Pinterest Pixel",
          "description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
          "vendor_url": "https://help.pinterest.com/en/business/article/track-conversions-with-pinterest-tag",
          "icon_url": "https://storeleads.app/img/tech/pinterest.png",
          "installs": 436674
        },
        {
          "installed_at": "2021-01-09T01:39:39Z",
          "name": "Shop Pay",
          "description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
          "vendor_url": "https://shop.app/what-shop-does",
          "icon_url": "https://storeleads.app/img/tech/shop.png",
          "installs": 1344233
        },
        {
          "installed_at": "2022-04-20T10:19:11Z",
          "name": "Steelhouse",
          "description": "Find new customers with highly-targeted, conversion-optimized Connected TV campaigns.",
          "vendor_url": "https://mountain.com",
          "icon_url": "https://storeleads.app/img/tech/steelhouse.png",
          "installs": 2190
        },
        {
          "installed_at": "2022-03-31T03:59:47Z",
          "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": 13299
        },
        {
          "installed_at": "2020-05-16T19:08:45Z",
          "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": 33331
        },
        {
          "installed_at": "2021-02-04T19:40:52Z",
          "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",
          "installs": 2513
        },
        {
          "installed_at": "2024-04-26T06:04:15Z",
          "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": 6475
        },
        {
          "installed_at": "2020-08-05T10:21:01Z",
          "name": "TikTok Pixel",
          "description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
          "vendor_url": "https://www.tiktok.com/business/en",
          "icon_url": "https://storeleads.app/img/tech/tiktok.png",
          "installs": 579848
        },
        {
          "installed_at": "2022-05-28T07:30:59Z",
          "name": "Typeform",
          "description": "Create forms, surveys, and quizzes that people enjoy answering.",
          "vendor_url": "https://www.typeform.com",
          "icon_url": "https://storeleads.app/img/tech/typeform.png",
          "installs": 46536
        },
        {
          "installed_at": "2021-10-20T12:48:46Z",
          "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": 54743
        },
        {
          "installed_at": "2021-11-09T19:49:21Z",
          "name": "accessiBe",
          "description": "The #1 Automated Web Accessibility Solution for ADA \u0026 WCAG Compliance",
          "vendor_url": "https://accessibe.com",
          "icon_url": "https://storeleads.app/img/tech/accessibe.png",
          "installs": 17435
        },
        {
          "installed_at": "2021-01-19T19:25:32Z",
          "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",
          "installs": 41112
        }
      ],
      "collections": [
        "pink-dresses",
        "playsuits",
        "sleepwear-intimates",
        "black-skirts",
        "bracelets",
        "cocktail-dresses",
        "long-sleeve-tops",
        "mini-skirts",
        "pants",
        "striped-tops",
        "black-playsuits-jumpsuits",
        "casual-dresses",
        "dress-pants",
        "formal-dresses",
        "white-dresses",
        "beige-playsuits-jumpsuits",
        "billini",
        "blue-tops",
        "bump-friendly-collection",
        "earrings",
        "heels",
        "long-sleeve-dresses",
        "midi-dresses",
        "casual-tops",
        "floral-skirts",
        "maxi-midi-skirts",
        "purple-dresses",
        "runaway",
        "sets",
        "top-rated-shoes",
        "under-50",
        "intimates-accessories",
        "outerwear",
        "winter-dresses",
        "yellow-skirts",
        "best-sellers",
        "blouses-shirts",
        "green-shorts",
        "green-tops",
        "top-rated",
        "tops",
        "blue-playsuits-jumpsuits",
        "green-pants",
        "green-playsuits-jumpsuits",
        "red-skirts",
        "above-knee-dresses",
        "floral-tops",
        "for-the-bride",
        "hair-accessories",
        "pink-skirts",
        "sale-jumpsuits-rompers",
        "sandals",
        "spring-wedding-guest-outfits",
        "bodysuits",
        "brown-dresses",
        "destination-wedding-guest-outfits",
        "exclusive-tops",
        "sale-accessories",
        "striped-dresses",
        "party-dresses",
        "sale-shoes",
        "shoes",
        "vacation-collection",
        "wedding-guest",
        "white-pants",
        "bags",
        "bridal-shoes-accessories",
        "dresses",
        "floral-print",
        "sweater-dresses",
        "top-rated-clothing",
        "accessories",
        "back-in-stock-dresses",
        "blue-dresses",
        "jumpsuits-rompers",
        "seven-wonders",
        "the-spring-edit",
        "vacation-tops",
        "back-in-stock-bottoms",
        "blazers",
        "brands-we-love",
        "dippin-daisys",
        "dresses-under-75",
        "fall-wedding-guest-outfits",
        "loungewear",
        "red-dresses",
        "black-tops",
        "bottoms",
        "event-dresses",
        "maxi-dresses",
        "shorts",
        "sndys",
        "tees",
        "top-rated-dresses",
        "crop-tops",
        "sale",
        "sale-knits",
        "swim",
        "vacation-dresses",
        "white-playsuits-jumpsuits",
        "white-tops",
        "belts",
        "date-night-tops",
        "exclusives",
        "the-party-edit",
        "wedding",
        "workwear",
        "clothing",
        "graduation-dresses",
        "lounge-pants",
        "midi-skirts",
        "occasion-dresses",
        "pink-playsuits-jumpsuits",
        "rings",
        "strapless-tops",
        "basics",
        "off-shoulder-dresses",
        "off-shoulder-tops",
        "top-rated-jumpsuits-rompers",
        "top-rated-tops",
        "wrap-dresses",
        "linen-looks",
        "beige-dresses",
        "bump-friendly-dresses",
        "casual-pants",
        "jewelry",
        "orange-dresses",
        "short-sleeve-tops",
        "spring-tops",
        "abrand",
        "under-75",
        "black-tie-wedding-guest-outfits",
        "49-and-under-tops",
        "green-dresses",
        "mini-dresses",
        "sale-tops",
        "sneakers",
        "yellow-dresses",
        "knitwear",
        "multi-colour-dresses",
        "sale-bottoms",
        "shoes-accessories",
        "the-white-edit",
        "wedding-guest-dresses",
        "back-in-stock",
        "beige-tops",
        "top-rated-bottoms",
        "boots",
        "floral-playsuits-jumpsuits",
        "homebodii",
        "just-black",
        "linen-dresses",
        "spring-dresses",
        "white-shorts",
        "white-skirts",
        "black-pants",
        "date-night",
        "floral-dresses",
        "jeans",
        "resort",
        "back-in-stock-tops",
        "bridesmaid-collection",
        "festival-clothing-outfits",
        "nippies-by-b-six",
        "off-the-shoulder-tops",
        "pink-styles",
        "sale-dresses",
        "sleeveless-tops",
        "black-dresses",
        "black-shorts",
        "maxi-skirts",
        "satin-dresses",
        "strapless-dresses",
        "striped-playsuits-jumpsuits",
        "teacher-looks",
        "womens-skirts",
        "off-the-shoulder-dresses",
        "under-30",
        "bachelorette-party",
        "backless-dresses",
        "beige-shorts",
        "necklaces",
        "superga",
        "sweaters",
        "top-rated-accessories",
        "beige-pants",
        "denim",
        "green-skirts",
        "new-arrivals"
      ],
      "cluster_domains": [
        "petalandpup.com",
        "petalandpup.com.au"
      ],
      "features": [
        "Shopify POS",
        "Returns Page",
        "Shopify Online Store 2.0",
        "Has iOS App",
        "Has Android App",
        "New Shopify Checkout (2022)",
        "Accepts Gift Cards",
        "Contact Page",
        "Tracking or Returns",
        "International Shipping",
        "Signature Required",
        "Tracking Page",
        "FAQ Page",
        "Brand Advocate Page",
        "Sizing Page",
        "Career Page"
      ],
      "shipping_carriers": [
        "USPS"
      ],
      "tags": [
        "Dropshipper"
      ],
      "redirects_to": [
        "petalandpup.com.au"
      ],
      "ships_to_countries": [
        "United Arab Emirates",
        "Argentina",
        "Austria",
        "Australia",
        "Barbados",
        "Belgium",
        "Bulgaria",
        "Bahrain",
        "Canada",
        "Switzerland",
        "Chile",
        "China",
        "Cyprus",
        "Czech Republic",
        "Germany",
        "Denmark",
        "Dominican Republic",
        "Egypt",
        "Spain",
        "Finland",
        "Fiji",
        "France",
        "United Kingdom",
        "Greece",
        "Hong Kong",
        "Hungary",
        "Indonesia",
        "Ireland",
        "Israel",
        "India",
        "Italy",
        "Japan",
        "Cambodia",
        "Korea (the Republic of)",
        "Kuwait",
        "Cayman Islands",
        "Sri Lanka",
        "Luxembourg",
        "Latvia",
        "Macao",
        "Malta",
        "Mauritius",
        "Maldives",
        "Mexico",
        "Malaysia",
        "New Caledonia",
        "Netherlands",
        "Norway",
        "New Zealand",
        "Papua New Guinea",
        "Philippines",
        "Poland",
        "Portugal",
        "Qatar",
        "Romania",
        "Serbia",
        "Saudi Arabia",
        "Sweden",
        "Singapore",
        "Thailand",
        "Turkey",
        "Trinidad and Tobago",
        "Taiwan",
        "United States",
        "Holy See",
        "Vietnam",
        "South Africa"
      ],
      "rank_percentile": 0.0017,
      "rank": 241,
      "latitude": 42.3600825,
      "platform_rank_percentile": 0.0007,
      "longitude": -71.0588801,
      "estimated_page_views": 30868584,
      "estimated_sales": 2938153000,
      "estimated_sales_yearly": 35257836000,
      "estimated_visits": 8322111,
      "product_images": 32113,
      "product_images_created_365": 18870,
      "product_images_created_90": 5523,
      "product_images_created_30": 1295,
      "employee_count": 105,
      "cc_rank": 132216,
      "cc_centrality": 297489,
      "product_count": 4362,
      "max_price": 20000,
      "max_price_usd": 20000,
      "max_weight": 5800,
      "monthly_app_spend": 58349,
      "min_price": 297,
      "min_price_usd": 297,
      "min_weight": 10,
      "variant_count": 18865,
      "vendor_count": 181,
      "avg_price": 6887,
      "avg_price_usd": 6887,
      "avg_weight": 396,
      "platform_rank": 21
    },
    {
      "theme": {
        "name": "versedskin/main",
        "style": "Unknown",
        "vendor": "Unknown",
        "version": "1.2.0"
      },
      "trustpilot": {
        "review_count": 5,
        "avg_rating": 3.1
      },
      "cluster_best_ranked": "versedskin.com",
      "city": "West Hollywood",
      "last_updated_at": "2025-04-07T00:00:00",
      "subregion": "Northern America",
      "contact_page": "https://versedskin.com/pages/contact-us",
      "country_code": "US",
      "currency_code": "USD",
      "title": "Clean skincare and makeup essentials",
      "administrative_area_level_1": "California",
      "state": "Active",
      "icon": "https://versedskin.com/cdn/shop/files/favicon_-new.png?crop=center\u0026height=32\u0026v=1736437861\u0026width=32",
      "brand_advocate_page": "https://ambassador.upfluence.co/versed-affiliate-program",
      "brands_page": "https://versedskin.com/blogs/learn/female-founded-brands",
      "faq_page": "https://versedskin.com/pages/faqs",
      "region": "Americas",
      "language_code": "en",
      "about_us": "https://versedskin.com/pages/about",
      "platform_domain": "versed-skin.myshopify.com",
      "last_plan": "Shopify Plus",
      "last_plan_change_at": "2025-04-07T00:00:00",
      "platform": "shopify",
      "location": "West Hollywood, CA, USA",
      "og_image": "https://versedskin.com/cdn/shop/files/Untitled_design_3cf0df74-5ef2-4a1d-8d6b-75bfca96318e.png?v=1719960705",
      "max_product_published_at": "2025-03-27T00:00:00",
      "merchant_name": "Versed Skin",
      "avg_price_formatted": "$19.95",
      "created_at": "2018-11-02T00:00:00",
      "name": "versedskin.com",
      "tld1": "versedskin.com",
      "description": "Shop Versed Skin for skincare and makeup routine essentials, from moisturizers and cleansers, to mascara and and concealer. Clean, dermatologist-tested, cruelty-free.",
      "retailer_page": "https://versedskin.com/pages/authorized-seller-and-reseller-policy",
      "contact_info": [
        {
          "source": "/",
          "type": "facebook",
          "value": "https://www.facebook.com/versedskin"
        },
        {
          "source": "/",
          "type": "instagram",
          "value": "https://www.instagram.com/versed"
        },
        {
          "description": "Solve Your Skin™\nShop at @Target",
          "followers": 257300,
          "followers_90d": 1428,
          "likes": 2000000,
          "source": "/",
          "type": "tiktok",
          "value": "https://www.tiktok.com/@versed"
        },
        {
          "source": "/pages/terms-conditions",
          "type": "email",
          "value": "hello@versedskin.com"
        },
        {
          "source": "/pages/faqs",
          "type": "email",
          "value": "partnerships@versedskin.com"
        },
        {
          "source": "/pages/faqs",
          "type": "linkedin",
          "value": "https://www.linkedin.com/company/offspring-beauty-co"
        }
      ],
      "aliases": [
        "www.versedskin.com"
      ],
      "apps": [
        {
          "installed_at": "2024-05-01T03:38:59Z",
          "average_rating": "4.3",
          "app_store_url": "https://apps.shopify.com/attentive",
          "state": "Active",
          "description": "Attentive's SMS-first platform helps brands engage through two-way, personalized conversations.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/5da194592c59cd145b825b53019db33c/icon/CIKipOGl7-8CEAE=.png",
          "name": "Attentive: SMS + MMS Marketing",
          "token": "attentive",
          "platform": "shopify",
          "vendor_name": "Attentive",
          "vendor_url": "https://apps.shopify.com/partners/attentive-mobile-inc",
          "vendor_email": "integration-questions@attentivemobile.com",
          "vendor_website": "https://www.attentive.com/",
          "vendor_address": "156 5th Ave, Suite 303, New York, NY, 10010, US",
          "id": "1.attentive",
          "created_at": "2020-07-02T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Gorgias\n \n \n Okendo\n \n \n LoyaltyLion\n \n \n Zendesk\n \n \n Rebuy\n \n \n Loop Returns"
          ],
          "review_count": 52,
          "installs": 9986,
          "instp": 0.003952300099341811,
          "installs_30d": 67,
          "installs_90d": 101
        },
        {
          "installed_at": "2023-04-06T00:34:41Z",
          "average_rating": "2.8",
          "app_store_url": "https://apps.shopify.com/bazaarvoice-reviews-photos-social",
          "state": "Active",
          "description": "Collect ratings, reviews, and photos and amplify their impact across your website, social, and more.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/16e28f7698fddac56db2a803783cf974/icon/CN_DsfeR8voCEAE=.png",
          "name": "Bazaarvoice Reviews \u0026 Photos",
          "token": "bazaarvoice-reviews-photos-social",
          "platform": "shopify",
          "vendor_name": "Bazaarvoice Inc.",
          "vendor_url": "https://apps.shopify.com/partners/bazaarvoice-inc1",
          "vendor_email": "support@bazaarvoice.com",
          "vendor_website": "https://bazaarvoice.com/",
          "vendor_address": "10901 Stonelake Blvd, Austin, TX, 78759, US",
          "id": "1.bazaarvoice-reviews-photos-social",
          "created_at": "2022-11-04T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free to install"
            }
          ],
          "categories": [
            "product reviews",
            "social trust - other"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Facebook\n \n \n Instagram\n \n \n Google\n \n \n Pinterest\n \n \n TikTok"
          ],
          "review_count": 6,
          "installs": 2246,
          "instp": 0.0008889311058603753,
          "installs_30d": 32,
          "installs_90d": 102
        },
        {
          "installed_at": "2024-07-30T13:50:41Z",
          "average_rating": "5",
          "app_store_url": "https://apps.shopify.com/discount-kit",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Elevate your sales with product volume, order volume \u0026 free gift with purchase tiered discounts!",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/5ffebd071fe3fdd067e680b765fe5fd8/icon/CJm9su-EuIgDEAE=.png",
          "name": "Discount Kit",
          "token": "discount-kit",
          "platform": "shopify",
          "vendor_name": "Optizio",
          "vendor_url": "https://apps.shopify.com/partners/optimise-bros",
          "vendor_email": "support@discountkit.app",
          "vendor_website": "https://discountkit.app",
          "vendor_address": "124 City Road, London, ENG, EC1V 2NX, GB",
          "id": "1.discount-kit",
          "created_at": "2022-10-27T00:00:00",
          "plans": [
            {
              "name": "Lite",
              "monthly_cost": "$49.99/month",
              "monthly_cost_cents": 4999
            },
            {
              "name": "Pro",
              "monthly_cost": "$99.99/month",
              "monthly_cost_cents": 9999
            },
            {
              "name": "Plus",
              "monthly_cost": "$349.99/month",
              "monthly_cost_cents": 34999
            }
          ],
          "categories": [
            "discounts"
          ],
          "integrates_with": [
            "Checkout"
          ],
          "review_count": 39,
          "installs": 537,
          "instp": 0.0002125360658268128,
          "installs_30d": 47,
          "installs_90d": 54,
          "reviews_30d": 2,
          "reviews_90d": 6
        },
        {
          "installed_at": "2025-01-09T17:27:23Z",
          "average_rating": "4.2",
          "app_store_url": "https://apps.shopify.com/influencer-marketing-for-shopify-by-grin",
          "state": "Active",
          "free_trial_duration": "23880h0m0s",
          "description": "GRIN helps brands make the most of their influencer marketing program and creator relationships.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/587aad73baed2981f8434ea77c94249c/icon/CKrkovmZkPwCEAE=.png",
          "name": "GRIN Influencer Marketing",
          "token": "influencer-marketing-for-shopify-by-grin",
          "platform": "shopify",
          "vendor_name": "Grin, Inc.",
          "vendor_url": "https://apps.shopify.com/partners/grin-inc1",
          "vendor_email": "support@grin.co",
          "vendor_website": "https://www.grin.co/",
          "vendor_address": "400 Capitol Mall, 8th Floor, Sacramento, CA, 95814, US",
          "id": "1.influencer-marketing-for-shopify-by-grin",
          "created_at": "2021-09-23T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free"
            }
          ],
          "categories": [
            "affiliate programs"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Instagram\n \n \n Gmail\n \n \n Outlook\n \n \n Klaviyo\n \n \n DocuSign\n \n \n TikTok"
          ],
          "review_count": 31,
          "installs": 1636,
          "instp": 0.0006475028001725619,
          "installs_30d": -9,
          "installs_90d": 297
        },
        {
          "installed_at": "2019-12-08T13:19:33Z",
          "average_rating": "4.6",
          "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 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": 3427,
          "installs": 358411,
          "instp": 0.14185337781946702,
          "installs_30d": 6234,
          "installs_90d": 17625,
          "reviews_30d": 86,
          "reviews_90d": 253
        },
        {
          "installed_at": "2024-12-20T22:43:55Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/octane-ai-quiz-personalization",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Create beautiful and powerful quizzes that recommend products, grow subscribers, and increase sales.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/660d02b21dc203afa3147b8a84d27cf3/icon/CMC_7Z38gfQCEAE=.png",
          "name": "Octane AI: Advanced Quiz Maker",
          "token": "octane-ai-quiz-personalization",
          "platform": "shopify",
          "vendor_name": "Octane AI",
          "vendor_url": "https://apps.shopify.com/partners/octane-ai",
          "vendor_email": "human@octaneai.com",
          "vendor_website": "https://www.octaneai.com",
          "vendor_address": "PO Box 7775 #94590, San Francisco, CA, 94120, US",
          "id": "1.octane-ai-quiz-personalization",
          "created_at": "2018-03-23T00:00:00",
          "plans": [
            {
              "name": "Octane",
              "monthly_cost": "$50/month",
              "monthly_cost_cents": 5000
            },
            {
              "name": "Octane Plus",
              "monthly_cost": "$200/month",
              "monthly_cost_cents": 20000
            },
            {
              "name": "Octane Enterprise",
              "monthly_cost": "$500/month",
              "monthly_cost_cents": 50000
            }
          ],
          "categories": [
            "pop-ups",
            "upsell and cross-sell"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n klaviyo\n \n \n yotpo\n \n \n recharge\n \n \n zapier\n \n \n attentive\n \n \n postscript"
          ],
          "review_count": 258,
          "installs": 2779,
          "instp": 0.0010998840352564483,
          "installs_30d": 54,
          "installs_90d": 105,
          "reviews_30d": 1,
          "reviews_90d": 5
        },
        {
          "installed_at": "2023-12-20T17:51:23Z",
          "average_rating": "4.9",
          "app_store_url": "https://apps.shopify.com/okendo-reviews",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "The customer marketing platform with Reviews, Surveys, Quizzes, Referrals \u0026 Loyalty all in one place",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/fe55626671bd5da73785c606c2b0752f/icon/CNKRrIWatfoCEAE=.png",
          "name": "Okendo: Reviews \u0026 Loyalty",
          "token": "okendo-reviews",
          "platform": "shopify",
          "vendor_name": "Okendo",
          "vendor_url": "https://apps.shopify.com/partners/okendo",
          "vendor_email": "support@okendo.io",
          "vendor_website": "https://www.okendo.io/",
          "vendor_address": "Level 13, 333 George St, Sydney, NSW, 2000, AU",
          "id": "1.okendo-reviews",
          "created_at": "2018-06-12T00:00:00",
          "plans": [
            {
              "name": "Free",
              "monthly_cost": "Free"
            },
            {
              "name": "Essential",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "Growth",
              "monthly_cost": "$119/month",
              "monthly_cost_cents": 11900
            }
          ],
          "categories": [
            "product reviews",
            "loyalty and rewards"
          ],
          "integrates_with": [
            "Checkout\n\n \n \n Shopify POS\n\n \n \n Customer accounts\n\n \n \n Shopify Flow\n \n \n Gorgias\n \n \n Klaviyo\n \n \n Postscript\n \n \n Attentive\n \n \n Google\n \n \n Meta"
          ],
          "review_count": 1152,
          "installs": 16513,
          "instp": 0.006535582970201415,
          "installs_30d": -64,
          "installs_90d": 493,
          "reviews_30d": 27,
          "reviews_90d": 72
        },
        {
          "installed_at": "2022-08-18T22:50:00Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/order-limits-minmaxify",
          "state": "Active",
          "free_trial_duration": "168h0m0s",
          "description": "Control Order Quantities with Minimum and Maximum Limits on Your Cart, Products, and Collections",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/a04c143bd308483d7a0f055ee1be9d64/icon/CLjmhfDv2vACEAE=.png",
          "name": "Minmaxify Order Limits",
          "token": "order-limits-minmaxify",
          "platform": "shopify",
          "vendor_name": "Intillium",
          "vendor_url": "https://apps.shopify.com/partners/bitstim",
          "vendor_email": "support@minmaxify.com",
          "vendor_website": "http://www.minmaxify.com",
          "vendor_address": "5 Kingsgate Place, Caledon, ON, L7E5Z5, CA",
          "id": "1.order-limits-minmaxify",
          "created_at": "2012-10-29T00:00:00",
          "plans": [
            {
              "name": "Standard",
              "monthly_cost": "$10/month",
              "monthly_cost_cents": 1000
            },
            {
              "name": "Premium",
              "monthly_cost": "$20/month",
              "monthly_cost_cents": 2000
            },
            {
              "name": "Plus",
              "monthly_cost": "$50/month",
              "monthly_cost_cents": 5000
            }
          ],
          "categories": [
            "order limits"
          ],
          "integrates_with": [
            "Checkout"
          ],
          "review_count": 258,
          "installs": 14675,
          "instp": 0.005808131780276495,
          "installs_30d": -32,
          "installs_90d": -320,
          "reviews_30d": 2,
          "reviews_90d": 9
        },
        {
          "installed_at": "2022-06-16T22:32:48Z",
          "average_rating": "4.7",
          "app_store_url": "https://apps.shopify.com/product-filter-search",
          "state": "Active",
          "free_trial_duration": "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/CPq2w4rmtf4CEAE=.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": 2006,
          "installs": 25010,
          "instp": 0.00989856053320035,
          "installs_30d": -291,
          "installs_90d": -784,
          "reviews_30d": 6,
          "reviews_90d": -12
        },
        {
          "installed_at": "2024-12-20T22:43:55Z",
          "average_rating": "4.8",
          "app_store_url": "https://apps.shopify.com/tolstoy",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Add shoppable videos to your website, emails, SMS \u0026 mobile app. Feature videos to all Shop App users",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/8bd7122773fa7246870cdd8376857423/icon/CMO26ZC3qIMDEAE=.png",
          "name": "Tolstoy Shoppable Video \u0026 UGC",
          "token": "tolstoy",
          "platform": "shopify",
          "vendor_name": "Tolstoy",
          "vendor_url": "https://apps.shopify.com/partners/tolstoy",
          "vendor_email": "support@gotolstoy.com",
          "vendor_website": "https://www.gotolstoy.com",
          "vendor_address": "Tel Aviv, Tel Aviv, 123456, IL",
          "id": "1.tolstoy",
          "created_at": "2020-12-02T00:00:00",
          "plans": [
            {
              "name": "Shop Videos",
              "monthly_cost": "Free"
            },
            {
              "name": "Pro",
              "monthly_cost": "$19/month",
              "monthly_cost_cents": 1900
            },
            {
              "name": "AI Creator",
              "monthly_cost": "$99/month",
              "monthly_cost_cents": 9900
            },
            {
              "name": "Business",
              "monthly_cost": "$299/month",
              "monthly_cost_cents": 29900
            }
          ],
          "categories": [
            "video and livestream",
            "social proof"
          ],
          "integrates_with": [
            "Shop app Minis",
            "TikTok videos\n \n \n TikTok feed",
            "Instagram Stories\n \n \n GoogleAnalytics",
            "Yotpo",
            "HeyGen\n \n \n Klaviyo",
            "Gorgias",
            "Tapcart\n \n \n Zapier",
            "Rebuy",
            "Fuego",
            "Hubspot\n \n \n Shopney",
            "Synthesia",
            "Buñu"
          ],
          "review_count": 239,
          "installs": 5703,
          "instp": 0.002257156766127213,
          "installs_30d": 240,
          "installs_90d": 516,
          "reviews_30d": 8,
          "reviews_90d": 19
        },
        {
          "installed_at": "2019-10-24T07:17:00Z",
          "average_rating": "2.9",
          "app_store_url": "https://apps.shopify.com/zendesk",
          "state": "Active",
          "free_trial_duration": "336h0m0s",
          "description": "Zendesk enables customer interactions across messaging, phone, chat, email, social media, and more.",
          "icon_url": "https://cdn.shopify.com/app-store/listing_images/d315fe70bcb98753afbe6aed7a9bffcd/icon/CLHzxd_0lu8CEAE=.png",
          "name": "Zendesk",
          "token": "zendesk",
          "platform": "shopify",
          "vendor_name": "Zendesk",
          "vendor_url": "https://apps.shopify.com/partners/zendesk_",
          "vendor_email": "integrations_support@zendesk.com",
          "vendor_website": "https://www.zendesk.com/",
          "vendor_address": "1019 Market St, San Francisco, CA, 94103, US",
          "id": "1.zendesk",
          "created_at": "2013-03-11T00:00:00",
          "plans": [
            {
              "name": "Suite Team",
              "monthly_cost": "$55/month",
              "monthly_cost_cents": 5500
            },
            {
              "name": "Suite Growth",
              "monthly_cost": "$89/month",
              "monthly_cost_cents": 8900
            },
            {
              "name": "Suite Professional",
              "monthly_cost": "$115/month",
              "monthly_cost_cents": 11500
            },
            {
              "name": "Suite Enterprise",
              "monthly_cost": "$150/month",
              "monthly_cost_cents": 15000
            }
          ],
          "categories": [
            "helpdesk"
          ],
          "integrates_with": [
            "mailchimp",
            "trustpilot",
            "loyaltylion",
            "yotpo",
            "shipstation",
            "chargedesk"
          ],
          "review_count": 161,
          "installs": 24016,
          "instp": 0.00950515113016152,
          "installs_30d": -68,
          "installs_90d": 747
        }
      ],
      "categories": [
        "/Beauty \u0026 Fitness/Face \u0026 Body Care/Skin \u0026 Nail Care"
      ],
      "technologies": [
        {
          "installed_at": "2020-02-28T14:53:36Z",
          "name": "Afterpay",
          "description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
          "vendor_url": "https://www.afterpay.com/",
          "icon_url": "https://storeleads.app/img/tech/afterpay.png",
          "installs": 467542
        },
        {
          "installed_at": "2020-11-10T19:44:04Z",
          "name": "Apple Pay",
          "description": "Make contactless, secure purchases in stores, in apps, and on the web.",
          "vendor_url": "https://www.apple.com/apple-pay",
          "icon_url": "https://storeleads.app/img/tech/apple_pay.png",
          "installs": 1590484
        },
        {
          "installed_at": "2024-02-16T01:45:08Z",
          "name": "Arrive",
          "description": "Arrive gives you accurate and timely updates on everything you order, across all online retailers.",
          "vendor_url": "https://tryarrive.com",
          "icon_url": "https://storeleads.app/img/tech/arrive.png",
          "installs": 2360185
        },
        {
          "installed_at": "2020-10-02T22:28:40Z",
          "name": "Attentive",
          "description": "The most comprehensive text message marketing solution, driving an average of 18.5% of total online revenue for our customers.",
          "vendor_url": "https://www.attentivemobile.com",
          "icon_url": "https://storeleads.app/img/tech/attentive.png",
          "installs": 13164
        },
        {
          "installed_at": "2020-07-07T19:32:06Z",
          "name": "Baazarvoice",
          "description": "Connect shoppers with authentic content they trust.",
          "vendor_url": "https://www.bazaarvoice.com",
          "icon_url": "https://storeleads.app/img/tech/bazaarvoice.png",
          "installs": 6496
        },
        {
          "installed_at": "2023-10-31T22:58:06Z",
          "name": "Cloudflare",
          "description": "Security, reliability and speed everywhere, powered by an intelligent global network.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 4473078
        },
        {
          "installed_at": "2021-06-08T15:44:30Z",
          "name": "Cloudflare CDN",
          "description": "Protect and accelerate your websites, apps, and teams.",
          "vendor_url": "https://www.cloudflare.com",
          "icon_url": "https://storeleads.app/img/tech/cloudflare.png",
          "installs": 3730457
        },
        {
          "installed_at": "2022-08-01T11:58:37Z",
          "name": "GRIN",
          "description": "GRIN is the all-in-one creator management platform helping ecommerce companies build more valuable brands through the power of creator partnerships.",
          "vendor_url": "https://grin.co",
          "icon_url": "https://storeleads.app/img/tech/grin.png",
          "installs": 1890
        },
        {
          "installed_at": "2020-08-05T01:50:11Z",
          "name": "Google Ads Pixel",
          "description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
          "vendor_url": "https://ads.google.com/",
          "icon_url": "https://storeleads.app/img/tech/adwords.png",
          "installs": 3307521
        },
        {
          "installed_at": "2022-02-04T00:13:57Z",
          "name": "Google Adsense",
          "description": "Earn money with website monetization from Google AdSense.",
          "vendor_url": "https://www.google.com/adsense/start",
          "icon_url": "https://storeleads.app/img/tech/adsense.png",
          "installs": 4406442
        },
        {
          "installed_at": "2020-01-18T02:49:53Z",
          "name": "Google Analytics",
          "description": "Google Analytics gives you the tools you need to better understand your customers. You can then use those business insights to take action, such as improving your website, creating tailored audience lists, and more.",
          "vendor_url": "https://analytics.google.com",
          "icon_url": "https://storeleads.app/img/tech/ga.png",
          "installs": 1431330
        },
        {
          "installed_at": "2022-09-09T12:02:57Z",
          "name": "Google Pay",
          "description": "Google Pay is the fast, simple way to pay online, in stores and more.",
          "vendor_url": "https://pay.google.com",
          "icon_url": "https://storeleads.app/img/tech/googlepay.png",
          "installs": 1435994
        },
        {
          "installed_at": "2020-01-18T02:49:53Z",
          "name": "Google Tag Manager",
          "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
          "vendor_url": "https://tagmanager.google.com/",
          "icon_url": "https://storeleads.app/img/tech/gtm.png",
          "installs": 4273247
        },
        {
          "installed_at": "2022-04-12T21:12:44Z",
          "name": "Hotjar",
          "description": "Hotjar lets you see how visitors are really using your website, collect user feedback and turn more visitors into customers.",
          "vendor_url": "https://www.hotjar.com",
          "icon_url": "https://storeleads.app/img/tech/hotjar.png",
          "installs": 316568
        },
        {
          "installed_at": "2020-01-18T02:49:53Z",
          "name": "Klaviyo",
          "description": "Klaviyo is the growth marketing platform built for online businesses.",
          "vendor_url": "https://www.klaviyo.com/",
          "icon_url": "https://storeleads.app/img/tech/klaviyo.png",
          "installs": 450741
        },
        {
          "installed_at": "2024-12-20T22:43:55Z",
          "name": "Octane AI",
          "description": "Octane AI enables merchants to increase revenue with a Facebook Messenger bot that customers love.",
          "vendor_url": "https://octaneai.com/",
          "icon_url": "https://storeleads.app/img/tech/octaneai.png",
          "installs": 2807
        },
        {
          "installed_at": "2023-12-20T17:51:23Z",
          "name": "Okendo",
          "description": "The new standard in customer reviews.",
          "vendor_url": "https://www.okendo.io",
          "icon_url": "https://storeleads.app/img/tech/okendo.png",
          "installs": 16668
        },
        {
          "installed_at": "2024-07-16T22:17:13Z",
          "name": "Osano",
          "description": "The Osano data privacy management platform supports, streamlines, and automates compliance in your organization—without the stress.",
          "vendor_url": "https://www.osano.com/",
          "icon_url": "https://storeleads.app/technologies/img/Osano.png",
          "installs": 72519
        },
        {
          "installed_at": "2020-11-07T01:30:55Z",
          "name": "PayPal Express Checkout",
          "description": "Add PayPal to your existing checkout.",
          "vendor_url": "https://www.paypal.com/pf/webapps/mpp/express-checkout",
          "icon_url": "https://storeleads.app/img/tech/paypal.png",
          "installs": 1424130
        },
        {
          "installed_at": "2020-10-02T22:28:40Z",
          "name": "Pepperjam",
          "description": "Pepperjam's affiliate marketing tools help power growth for marketers seeking a scaled alternative to their primary sales and marketing channels.",
          "vendor_url": "https://www.pepperjam.com",
          "icon_url": "https://storeleads.app/img/tech/pepperjam.png",
          "installs": 1007
        },
        {
          "installed_at": "2022-07-25T03:57:10Z",
          "name": "Pinterest Pixel",
          "description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
          "vendor_url": "https://help.pinterest.com/en/business/article/track-conversions-with-pinterest-tag",
          "icon_url": "https://storeleads.app/img/tech/pinterest.png",
          "installs": 436674
        },
        {
          "installed_at": "2021-01-07T21:36:58Z",
          "name": "Shop Pay",
          "description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
          "vendor_url": "https://shop.app/what-shop-does",
          "icon_url": "https://storeleads.app/img/tech/shop.png",
          "installs": 1344233
        },
        {
          "installed_at": "2021-09-11T06:37:55Z",
          "name": "Snap Pixel",
          "description": "The Snap Pixel is a piece of JavaScript code that helps Advertisers measure the cross-device impact of Campaigns. Advertisers will be able to see how many Snapchatters take action on their website(s) after seeing their Ad.",
          "vendor_url": "https://businesshelp.snapchat.com/en-US/article/snap-pixel-about",
          "icon_url": "https://storeleads.app/img/snapchat.png",
          "installs": 91077
        },
        {
          "installed_at": "2020-01-18T02:49:53Z",
          "name": "Zendesk",
          "description": "Zendesk customer service and engagement products are powerful and flexible, and scale to meet the needs of any business.",
          "vendor_url": "https://www.zendesk.com",
          "icon_url": "https://storeleads.app/img/tech/zendesk.png",
          "installs": 380153
        },
        {
          "installed_at": "2023-10-31T22:58:06Z",
          "name": "reCAPTCHA",
          "description": "reCAPTCHA is a free service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease.",
          "vendor_url": "https://www.google.com/recaptcha/intro/v3.html",
          "icon_url": "https://storeleads.app/img/tech/recaptcha.png",
          "installs": 2559641
        }
      ],
      "collections": [
        "best-sellers",
        "cheeks",
        "face",
        "lip",
        "new-arrivals",
        "skincare",
        "all",
        "dullness",
        "last-chance",
        "eye",
        "makeup",
        "versed-set",
        "versed-sets",
        "aging-skin",
        "dryness",
        "essentials"
      ],
      "cluster_domains": [
        "versedskin.com"
      ],
      "features": [
        "Shopify POS",
        "FAQ Page",
        "Shopify Online Store 2.0",
        "Product Page Video Tag",
        "New Shopify Checkout (2022)",
        "Accepts Gift Cards",
        "Contact Page",
        "International Shipping",
        "Wholesale/Retailers Page",
        "Has Blog"
      ],
      "ships_to_countries": [
        "United States"
      ],
      "rank_percentile": 0.0041,
      "rank": 584,
      "latitude": 34.0900091,
      "platform_rank_percentile": 0.0078,
      "longitude": -118.3617443,
      "estimated_page_views": 688498,
      "estimated_sales": 78639748,
      "estimated_sales_yearly": 943676976,
      "estimated_visits": 185617,
      "product_images": 164,
      "product_images_created_365": 116,
      "product_images_created_90": 30,
      "product_images_created_30": 2,
      "employee_count": 51,
      "cc_rank": 95512,
      "cc_centrality": 32454,
      "product_count": 31,
      "max_price": 6196,
      "max_price_usd": 6196,
      "max_weight": 263,
      "monthly_app_spend": 16499,
      "min_price": 699,
      "min_price_usd": 699,
      "min_weight": 1,
      "variant_count": 33,
      "vendor_count": 1,
      "avg_price": 1995,
      "avg_price_usd": 1995,
      "avg_weight": 107,
      "platform_rank": 242
    }
  ],
  "has_next_page": true,
  "next_cursor": "5b22205c753030303140415c75303031305c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c2233393533313331225d",
  "total": 13938
}

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.

avgpp
Average Product Price
an
Installed Apps
avgpp
Average Product Price
description
The meta description tag of the Domain's home page.
cat
Domain Categories
cc
Country Code
cfc
Combined Follower Count
city
Company city
curr
Currency Code
cratyyyymm
Created At YYYY-MM
cratyyyymmdd
Created At YYYY-MM-DD
ds
Status
empc
Employee Count
er
Estimated Monthly Sales
ismy
Domain Type
it
Contact Information
keywords
The meta keywords tag of the Domain's home page.
lcc
Company Country Code
mppat
Max Product Published At
mas
Monthly App Spend
p
Platform
pc
Products Sold
q
Query. Matches 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
rank
Rank
reg
Region
sreg
Subregion
state
Location State/Province
tech
Technologies
tld
Top-level Domain
tn
Theme Name
ts
Theme Style
tvn
Theme Vendor Name

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
fields

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.

page_size

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": 192
    },
    {
      "state": "Active",
      "name": "uk.gymshark.com",
      "rank": 11752282
    },
    {
      "state": "Active",
      "name": "ca.gymshark.com",
      "rank": 11752672
    },
    {
      "state": "Active",
      "name": "row.gymshark.com",
      "rank": 11752697
    },
    {
      "state": "Active",
      "name": "de.gymshark.com",
      "rank": 11752707
    }
  ]
}


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
fields

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": 192
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "uk.gymshark.com",
      "rank": 11752282
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "ca.gymshark.com",
      "rank": 11752672
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "row.gymshark.com",
      "rank": 11752697
    },
    {
      "state": "Active",
      "language_code": "de",
      "name": "de.gymshark.com",
      "rank": 11752707
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "eu.gymshark.com",
      "rank": 11752803
    },
    {
      "state": "Active",
      "language_code": "fr",
      "name": "fr.gymshark.com",
      "rank": 11752889
    },
    {
      "state": "Active",
      "language_code": "nl",
      "name": "nl.gymshark.com",
      "rank": 11752916
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "au.gymshark.com",
      "rank": 11753325
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "se.gymshark.com",
      "rank": 11755795
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "no.gymshark.com",
      "rank": 11756080
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "fi.gymshark.com",
      "rank": 11757829
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "dk.gymshark.com",
      "rank": 11758051
    },
    {
      "state": "Active",
      "language_code": "de",
      "name": "ch.gymshark.com",
      "rank": 11768682
    },
    {
      "state": "Active",
      "language_code": "en",
      "name": "ie.gymshark.com",
      "rank": 11774430
    },
    {
      "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:

domains
The total number of domains in the response. Domains are grouped into chunks.
chunk_size
The number of domains in each chunk.
expected_chunks
The total number of chunks in the response.

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.


Products

Product objects represent a product for sale at a Domain.

List Products for a Domain

Returns a list of Products available for sale at a Domain.

By default, 50 Products are returned in a single request. The cursor request option can be used to paginate through results.

Use the fields request option to customize the fields included in the response.

Note that this endpoint is only available on the Enterprise plan. A full list of products sold across all Shopify stores is available for a custom fee. Contact us for details about the product feed.

Plan Rate Limit
Enterprise 10 requests/minute
Request Options
cursor

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.

fields

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=title,variants.grams would return the title field from each Product and the grams field for all variants of each Product.

page_size

The number of Products to return in a single query. Default: 50, Max: 10,000.

Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/product/domain/sensibo.com'

Example Response

{
  "products": [
    {
      "updated_at": "2025-04-03T02:14:04Z",
      "published_at": "2021-02-18T09:17:21Z",
      "created_at": "2021-02-18T09:10:10Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003cp\u003e[Needed for converting currency]\u003c/p\u003e",
      "handle": "currency-base",
      "title": "Currency Base",
      "published_scope": "web",
      "options": [
        {
          "name": "Title",
          "values": [
            "Default Title"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-03T02:14:04Z",
          "created_at": "2021-02-18T09:10:10Z",
          "compare_at_price": "10000000.00",
          "fulfillment_service": "manual",
          "option1": "Default Title",
          "inventory_policy": "deny",
          "price": "10000000.00",
          "title": "Default Title",
          "weight_unit": "kg",
          "price_usd_cents": 1000000000,
          "inventory_quantity": 1000,
          "position": 1,
          "id": 33125170020404
        }
      ],
      "id": 4879939174452
    },
    {
      "tags": [
        "_wf_cus",
        "_wf_exc"
      ],
      "updated_at": "2025-04-13T16:25:50Z",
      "published_at": "2024-04-01T07:19:37Z",
      "image": {
        "created_at": "2024-04-01T00:09:47Z",
        "updated_at": "2025-02-26T13:33:21Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/extended-warranty-847505.jpg?v=1740576801",
        "id": 31662277263412,
        "position": 1
      },
      "created_at": "2024-03-07T13:15:15Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003cmeta charset=\"utf-8\"\u003e\n\u003cp class=\"p1\" data-mce-fragment=\"1\"\u003eGet even more out of your AC with Sensibo’s Extended warranty, designed to make your air conditioner even more efficient. \u003cb data-mce-fragment=\"1\"\u003eNo Long-term commitments. Cancel anytime for any reason\u003c/b\u003e\u003c/p\u003e\n\u003cbr\u003e",
      "handle": "extended-warranty",
      "title": "Extended warranty",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-04-01T00:09:47Z",
          "updated_at": "2025-02-26T13:33:21Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/extended-warranty-847505.jpg?v=1740576801",
          "id": 31662277263412,
          "position": 1
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Yearly Subscription",
            "Monthly Subscription"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-13T16:25:50Z",
          "created_at": "2024-03-07T13:15:15Z",
          "compare_at_price": "48.00",
          "fulfillment_service": "manual",
          "option1": "Yearly Subscription",
          "sku": "SEN-WARRANTY-YR-01",
          "inventory_policy": "deny",
          "price": "23.88",
          "title": "Yearly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 2388,
          "inventory_quantity": -6,
          "position": 1,
          "id": 42532610474036
        },
        {
          "updated_at": "2025-04-13T16:25:50Z",
          "created_at": "2024-03-07T13:15:15Z",
          "compare_at_price": "6.00",
          "fulfillment_service": "manual",
          "option1": "Monthly Subscription",
          "sku": "SEN-WARRANTY-MONTH-01",
          "inventory_policy": "deny",
          "price": "6.00",
          "title": "Monthly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 600,
          "position": 2,
          "id": 42532610605108
        }
      ],
      "id": 7274783211572
    },
    {
      "updated_at": "2025-04-02T18:16:10Z",
      "published_at": "2022-01-20T13:53:48Z",
      "image": {
        "created_at": "2024-08-06T05:45:40Z",
        "updated_at": "2025-03-23T15:25:44Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Shield_fdea467b-9adc-4e72-9896-858acb67ff9f-933459.jpg?v=1742743544",
        "id": 32639995412532,
        "position": 1
      },
      "created_at": "2021-04-26T11:34:46Z",
      "product_type": "Air Conditioner Accessories",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eSensibo Pure Smart Air Purifier Replacement HEPA Filters\u003c/h4\u003e",
      "handle": "pure-filters",
      "title": "Filters for Sensibo Pure",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-06T05:45:40Z",
          "updated_at": "2025-03-23T15:25:44Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Shield_fdea467b-9adc-4e72-9896-858acb67ff9f-933459.jpg?v=1742743544",
          "id": 32639995412532,
          "position": 1
        },
        {
          "created_at": "2023-08-08T10:50:48Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/pure-filter-lifestyle-buybox_1-178621.png?v=1742743545",
          "id": 30777181896756,
          "position": 2
        },
        {
          "created_at": "2023-08-08T10:50:48Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-HEPA-FILTER_0d4d51c1-1fbb-4532-95c6-9ec3fce58418-512419.png?v=1742743545",
          "id": 30777181929524,
          "position": 3
        },
        {
          "created_at": "2023-08-08T10:50:48Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-FILTER-INSIDE_11149028-7b84-4a39-8185-2b6188601c95-870740.png?v=1742743545",
          "id": 30777181962292,
          "position": 4
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:59Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_5-min.jpg?v=1742743559",
          "id": 33799479164980,
          "position": 5
        },
        {
          "created_at": "2023-08-08T10:50:48Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-WITH-FILTER_1-237600.png?v=1742743545",
          "id": 30777181995060,
          "position": 6
        },
        {
          "created_at": "2021-05-02T11:50:57Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/Oldvs.new_540x540_0faa2cec-c1b4-49a6-a9ca-611d5b09105b.jpg?v=1742743545",
          "id": 27978346102836,
          "position": 7
        },
        {
          "created_at": "2021-04-29T08:06:38Z",
          "updated_at": "2025-03-23T15:25:45Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/3-stepfiltrationimage_540x540_9ef0aac1-3dbb-4de2-bbd5-ada7343210e1.jpg?v=1742743545",
          "id": 27976335065140,
          "position": 8
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Filter Subscription",
            "Single Pure filter",
            "Two filter pack"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2021-04-26T11:34:46Z",
          "barcode": "7290016037227",
          "compare_at_price": "120.00",
          "fulfillment_service": "manual",
          "option1": "Filter Subscription",
          "sku": "SEN-PUR-FILTER",
          "inventory_policy": "deny",
          "price": "59.88",
          "title": "Filter Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 5988,
          "position": 1,
          "id": 39289630785588,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2021-07-29T08:16:50Z",
          "barcode": "7290016037227",
          "compare_at_price": "142.00",
          "fulfillment_service": "manual",
          "option1": "Single Pure filter",
          "sku": "SEN-PUR-FILTER",
          "inventory_policy": "deny",
          "price": "99.00",
          "title": "Single Pure filter",
          "weight_unit": "kg",
          "price_usd_cents": 9900,
          "inventory_quantity": 658,
          "position": 2,
          "id": 39348679344180,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2021-04-26T11:34:46Z",
          "barcode": "7290016037227",
          "compare_at_price": "120.00",
          "fulfillment_service": "manual",
          "option1": "Two filter pack",
          "sku": "SEN-PUR-FILTER-2PACK",
          "inventory_policy": "deny",
          "price": "120.00",
          "title": "Two filter pack",
          "weight_unit": "kg",
          "price_usd_cents": 12000,
          "inventory_quantity": 994,
          "position": 3,
          "id": 39289630818356,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 6546456510516
    },
    {
      "updated_at": "2025-04-02T18:40:48Z",
      "published_at": "2025-01-09T15:48:32Z",
      "image": {
        "created_at": "2025-01-14T19:04:20Z",
        "updated_at": "2025-02-26T13:33:00Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor-highq.jpg?v=1740576780",
        "id": 33600476545076,
        "position": 1
      },
      "created_at": "2025-01-01T05:44:49Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003ch4 class=\"p1\"\u003e\n\u003cmeta charset=\"utf-8\"\u003e AC off when windows open\u003cbr\u003e\u003cmeta charset=\"utf-8\"\u003e\n\u003c/h4\u003e",
      "handle": "door-sensor",
      "title": "Smart Door and Window Sensor",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-01-14T19:04:20Z",
          "updated_at": "2025-02-26T13:33:00Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor-highq.jpg?v=1740576780",
          "id": 33600476545076,
          "position": 1
        },
        {
          "created_at": "2025-01-02T10:56:45Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/3_1-130404-881605.jpg?v=1741702426",
          "id": 33535141478452,
          "position": 2
        },
        {
          "created_at": "2025-01-02T10:56:45Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door-Sensor-903467-278364.webp?v=1741702426",
          "id": 33535141412916,
          "position": 3
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-02T12:15:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_1.webp?v=1743596127",
          "id": 33944928911412,
          "position": 4
        },
        {
          "created_at": "2025-03-11T14:13:17Z",
          "updated_at": "2025-04-02T12:15:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_2.webp?v=1743596127",
          "id": 33944928976948,
          "position": 5
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-02T12:15:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_3.webp?v=1743596127",
          "id": 33944928944180,
          "position": 6
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-02T12:15:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_4.webp?v=1743596127",
          "id": 33944929009716,
          "position": 7
        },
        {
          "created_at": "2025-01-02T10:56:45Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Window-Sensor-586213-973603.webp?v=1741702426",
          "id": 33535141445684,
          "position": 8
        },
        {
          "created_at": "2025-01-02T10:56:45Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/1_353b0221-b69b-4cc3-b72e-654a4a29eb00-804316-186760.jpg?v=1741702426",
          "id": 33535141511220,
          "position": 9
        },
        {
          "created_at": "2025-01-02T10:56:45Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/2_237ae904-97f3-4967-b70b-e4cc5f126eac-295699-487404.jpg?v=1741702426",
          "id": 33535141543988,
          "position": 10
        },
        {
          "created_at": "2025-01-15T15:04:00Z",
          "updated_at": "2025-03-11T14:13:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/seensor-image2-min.jpg?v=1741702426",
          "id": 33603975741492,
          "position": 11
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Default Title"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:40:48Z",
          "created_at": "2025-01-01T05:44:50Z",
          "compare_at_price": "79.00",
          "fulfillment_service": "manual",
          "option1": "Default Title",
          "sku": "SEN-DOOR-SENSOR",
          "inventory_policy": "continue",
          "price": "49.00",
          "title": "Default Title",
          "weight_unit": "kg",
          "price_usd_cents": 4900,
          "position": 1,
          "id": 45766011453492,
          "requires_shipping": true
        }
      ],
      "id": 7713097285684
    },
    {
      "updated_at": "2025-04-13T09:22:27Z",
      "published_at": "2024-08-06T07:14:15Z",
      "image": {
        "created_at": "2025-04-02T11:33:45Z",
        "updated_at": "2025-04-08T13:14:26Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Children-Bundle-Cover.jpg?v=1744118066",
        "id": 34085196267572,
        "position": 1
      },
      "created_at": "2024-07-25T11:11:09Z",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eImprove Air Quality And Health\u003c/h4\u003e",
      "handle": "new-born-bundle",
      "title": "Sensibo Child Healthy Bundle",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:26Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Children-Bundle-Cover.jpg?v=1744118066",
          "id": 34085196267572,
          "position": 1
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:26Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_2.jpg?v=1744118066",
          "id": 34085196464180,
          "position": 2
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_1.jpg?v=1744118067",
          "id": 34085196431412,
          "position": 3
        },
        {
          "created_at": "2024-08-08T03:47:33Z",
          "updated_at": "2025-04-08T13:14:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/0004_Img-product-1-517690.webp?v=1744118067",
          "id": 32649236971572,
          "position": 4
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_3.jpg?v=1744118067",
          "id": 34085196398644,
          "position": 5
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:27Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_4.jpg?v=1744118067",
          "id": 34085196300340,
          "position": 6
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:28Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_7.jpg?v=1744118068",
          "id": 34085196496948,
          "position": 7
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:28Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_5.jpg?v=1744118068",
          "id": 34085196365876,
          "position": 8
        },
        {
          "created_at": "2025-04-02T11:33:45Z",
          "updated_at": "2025-04-08T13:14:28Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Child_Bundle_6.jpg?v=1744118068",
          "id": 34085196333108,
          "position": 9
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Default Title"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-13T09:22:27Z",
          "created_at": "2024-07-25T11:11:09Z",
          "compare_at_price": "444.00",
          "fulfillment_service": "manual",
          "option1": "Default Title",
          "inventory_policy": "continue",
          "price": "268.00",
          "title": "Default Title",
          "weight_unit": "kg",
          "price_usd_cents": 26800,
          "inventory_quantity": -1969,
          "position": 1,
          "id": 44520004026420,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 7581848076340
    },
    {
      "updated_at": "2025-04-01T11:40:53Z",
      "published_at": "2024-10-22T07:18:14Z",
      "image": {
        "created_at": "2024-11-17T12:08:45Z",
        "updated_at": "2025-02-26T13:33:03Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor-2-179422-269077_b8fa3e26-42d9-4b47-aa4b-f4f2cc502ae8.jpg?v=1740576783",
        "id": 33306593820724,
        "position": 1
      },
      "created_at": "2024-10-22T06:46:46Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003ch4 class=\"p1\" data-mce-fragment=\"1\"\u003e\n\u003cmeta charset=\"utf-8\"\u003e\n\u003cmeta charset=\"utf-8\"\u003e\n\u003cmeta charset=\"utf-8\"\u003eYour ACs will be turned off when guests open windows or doors\u003cbr\u003e\u003cmeta charset=\"utf-8\"\u003e\n\u003c/h4\u003e",
      "handle": "door-sensor-subscription",
      "title": "Additional Window / Door Sensor For Airbnb Package",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-11-17T12:08:45Z",
          "updated_at": "2025-02-26T13:33:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor-2-179422-269077_b8fa3e26-42d9-4b47-aa4b-f4f2cc502ae8.jpg?v=1740576783",
          "id": 33306593820724,
          "position": 1
        },
        {
          "created_at": "2024-10-22T22:55:41Z",
          "updated_at": "2025-02-26T13:33:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Airbnb-617438-262018.webp?v=1740576783",
          "id": 33131471044660,
          "position": 2
        },
        {
          "created_at": "2024-11-27T00:15:31Z",
          "updated_at": "2025-02-26T13:33:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door-Sensor-903467.webp?v=1740576783",
          "id": 33367456055348,
          "position": 3
        },
        {
          "created_at": "2024-11-27T00:15:31Z",
          "updated_at": "2025-02-26T13:33:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Window-Sensor-586213.webp?v=1740576783",
          "id": 33367456088116,
          "position": 4
        },
        {
          "created_at": "2024-12-31T12:55:41Z",
          "updated_at": "2025-02-26T13:33:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/3_1-130404.jpg?v=1740576783",
          "id": 33526865133620,
          "position": 5
        },
        {
          "created_at": "2024-12-31T12:55:41Z",
          "updated_at": "2025-02-26T13:33:04Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/1_353b0221-b69b-4cc3-b72e-654a4a29eb00-804316.jpg?v=1740576784",
          "id": 33526865166388,
          "position": 6
        },
        {
          "created_at": "2024-12-31T12:55:41Z",
          "updated_at": "2025-02-26T13:33:04Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/2_237ae904-97f3-4967-b70b-e4cc5f126eac-295699.jpg?v=1740576784",
          "id": 33526865199156,
          "position": 7
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-03-23T15:26:16Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_4.webp?v=1742743576",
          "id": 33944929009716,
          "position": 8
        },
        {
          "created_at": "2025-03-11T14:13:17Z",
          "updated_at": "2025-03-23T15:26:16Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_2.webp?v=1742743576",
          "id": 33944928976948,
          "position": 9
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-03-23T15:26:16Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_3.webp?v=1742743576",
          "id": 33944928944180,
          "position": 10
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-03-23T15:26:16Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_1.webp?v=1742743576",
          "id": 33944928911412,
          "position": 11
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Yearly Subscription"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-01T11:40:53Z",
          "created_at": "2024-10-22T06:46:47Z",
          "compare_at_price": "24.00",
          "fulfillment_service": "manual",
          "option1": "Yearly Subscription",
          "sku": "SEN-DOOR-SENSOR-YR-01",
          "inventory_policy": "continue",
          "price": "14.99",
          "title": "Yearly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 1499,
          "position": 1,
          "id": 45289002860596,
          "requires_shipping": true
        }
      ],
      "id": 7653056413748
    },
    {
      "updated_at": "2025-04-02T18:16:20Z",
      "published_at": "2021-01-12T11:48:40Z",
      "image": {
        "created_at": "2024-08-05T11:49:04Z",
        "updated_at": "2025-03-23T15:25:52Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/sensib-air_5ec4f9d5-d298-4a0e-b614-6de1af9f7586.jpg?v=1742743552",
        "id": 32637064708148,
        "position": 1
      },
      "created_at": "2021-01-12T11:46:32Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eNext-Gen Smart AC Control\u003c/h4\u003e",
      "handle": "sensibo-air",
      "title": "Sensibo Air",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-05T11:49:04Z",
          "updated_at": "2025-03-23T15:25:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/sensib-air_5ec4f9d5-d298-4a0e-b614-6de1af9f7586.jpg?v=1742743552",
          "id": 32637064708148,
          "position": 1
        },
        {
          "created_at": "2025-02-26T13:39:22Z",
          "updated_at": "2025-03-23T15:25:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/air_sideview_with_homekit_e645ce2c-c53d-4dfc-a952-4ee112c57eac.png?v=1742743552",
          "id": 33856209158196,
          "position": 2
        },
        {
          "created_at": "2024-08-05T11:49:04Z",
          "updated_at": "2025-03-23T15:25:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/sensiboairfront_1-484561.png?v=1742743552",
          "id": 32637064740916,
          "position": 3
        },
        {
          "created_at": "2024-08-05T11:49:04Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/amazon-air-images-witb-697366.png?v=1742743553",
          "id": 32637064871988,
          "position": 4
        },
        {
          "created_at": "2025-03-20T13:20:57Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_1-min.jpg?v=1742743553",
          "id": 34003691700276,
          "position": 5
        },
        {
          "created_at": "2025-03-20T13:20:57Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_2-min.jpg?v=1742743553",
          "id": 34003691798580,
          "position": 6
        },
        {
          "created_at": "2025-03-20T13:20:57Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_3-min.jpg?v=1742743553",
          "id": 34003691733044,
          "position": 7
        },
        {
          "created_at": "2025-03-20T13:20:57Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_4-min.jpg?v=1742743553",
          "id": 34003691831348,
          "position": 8
        },
        {
          "created_at": "2025-03-20T13:20:57Z",
          "updated_at": "2025-03-23T15:25:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_5-min.jpg?v=1742743553",
          "id": 34003691765812,
          "position": 9
        },
        {
          "created_at": "2024-08-05T11:49:04Z",
          "updated_at": "2025-03-23T15:25:54Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/amazon-air-images-compat-903623.png?v=1742743554",
          "id": 32637064839220,
          "position": 10
        },
        {
          "created_at": "2024-08-05T11:49:04Z",
          "updated_at": "2025-03-23T15:25:54Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/amazon-air-images-benefits-873482.png?v=1742743554",
          "id": 32637064806452,
          "position": 11
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:20Z",
          "created_at": "2021-01-12T11:46:32Z",
          "barcode": "7290016037173",
          "compare_at_price": "185.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-AIR-CRL-01",
          "inventory_policy": "continue",
          "price": "109.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 10900,
          "position": 1,
          "id": 33098964402228,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:20Z",
          "created_at": "2021-01-12T11:46:32Z",
          "barcode": "7290016037173",
          "compare_at_price": "185.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-AIR-CRL-01",
          "inventory_policy": "continue",
          "price": "109.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 10900,
          "position": 2,
          "id": 33098964434996,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:20Z",
          "created_at": "2021-01-12T11:46:32Z",
          "barcode": "7290016037173",
          "compare_at_price": "185.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-AIR-CRL-01",
          "inventory_policy": "continue",
          "price": "105.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 10500,
          "position": 3,
          "id": 33098964467764,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:20Z",
          "created_at": "2021-01-12T11:46:32Z",
          "barcode": "7290016037173",
          "compare_at_price": "185.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-AIR-CRL-01",
          "inventory_policy": "continue",
          "price": "99.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 9900,
          "position": 4,
          "id": 33098964500532,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 4872128954420
    },
    {
      "updated_at": "2025-04-02T18:16:15Z",
      "published_at": "2020-11-11T14:30:04Z",
      "image": {
        "created_at": "2024-08-05T11:49:15Z",
        "updated_at": "2025-03-23T15:26:02Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Bundle_0a505e1a-36a2-4f20-a90f-551d7f67ca79.jpg?v=1742743562",
        "id": 32637065134132,
        "position": 1
      },
      "created_at": "2020-11-11T14:30:04Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003e\n\u003cmeta charset=\"utf-8\"\u003eFor Improved Home Automation\u003cbr\u003e\n\u003c/h4\u003e",
      "handle": "sensibo-air-bundle",
      "title": "Sensibo Air + Room Sensor",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-05T11:49:15Z",
          "updated_at": "2025-03-23T15:26:02Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Bundle_0a505e1a-36a2-4f20-a90f-551d7f67ca79.jpg?v=1742743562",
          "id": 32637065134132,
          "position": 1
        },
        {
          "created_at": "2025-02-26T13:39:34Z",
          "updated_at": "2025-03-23T15:26:02Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/ROOM_AIR_5b165eed-45b7-4ccd-ac46-9e0164bc3e8f.webp?v=1742743562",
          "id": 33856209322036,
          "position": 2
        },
        {
          "created_at": "2021-01-17T11:44:41Z",
          "updated_at": "2025-03-23T15:26:02Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/sensiboairfront_608x608_ac3e5c75-a9c4-4261-be1f-050323cbc39a.jpg?v=1742743562",
          "id": 16588179243060,
          "position": 3
        },
        {
          "created_at": "2021-01-17T11:44:41Z",
          "updated_at": "2025-03-23T15:26:02Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/sensiboairsideview_608x608_87cb2a4f-da98-4a1c-9aa2-4dba7b90cc51.jpg?v=1742743562",
          "id": 16588179177524,
          "position": 4
        },
        {
          "created_at": "2021-01-17T11:44:41Z",
          "updated_at": "2025-03-23T15:26:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/roomsensorfrontview_608x608_274a6aeb-0c5f-40b0-b343-d2e28a797ee5.jpg?v=1742743563",
          "id": 16588179210292,
          "position": 5
        },
        {
          "created_at": "2021-01-17T11:44:41Z",
          "updated_at": "2025-03-23T15:26:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/roomsensorsideview_608x608_d5b5e5bb-b208-405f-8aa1-dc9e9e993204.jpg?v=1742743563",
          "id": 16588179275828,
          "position": 6
        },
        {
          "created_at": "2021-01-17T11:44:41Z",
          "updated_at": "2025-03-23T15:26:03Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/tas-91039-1.small-sharp_608x608_5b2f6392-2af1-495d-8d30-4ec8f3a4da4f.jpg?v=1742743563",
          "id": 16588179308596,
          "position": 7
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:15Z",
          "created_at": "2020-11-11T14:30:04Z",
          "barcode": "7290016037197",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-AIR-SET-01",
          "inventory_policy": "continue",
          "price": "149.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 14900,
          "inventory_quantity": 587,
          "position": 1,
          "id": 33051046838324,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:15Z",
          "created_at": "2020-11-11T14:30:04Z",
          "barcode": "7290016037197",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-AIR-SET-01",
          "inventory_policy": "continue",
          "price": "149.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 14900,
          "inventory_quantity": 767,
          "position": 2,
          "id": 33051046871092,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:15Z",
          "created_at": "2020-11-11T14:30:04Z",
          "barcode": "7290016037197",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-AIR-SET-01",
          "inventory_policy": "continue",
          "price": "145.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 14500,
          "inventory_quantity": 816,
          "position": 3,
          "id": 33051046903860,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:15Z",
          "created_at": "2020-11-11T14:30:04Z",
          "barcode": "7290016037197",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-AIR-SET-01",
          "inventory_policy": "continue",
          "price": "139.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 13900,
          "inventory_quantity": 608,
          "position": 4,
          "id": 33051046936628,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 4859255029812
    },
    {
      "updated_at": "2025-04-08T18:30:32Z",
      "published_at": "2024-05-29T06:41:13Z",
      "image": {
        "created_at": "2025-04-08T13:14:22Z",
        "updated_at": "2025-04-08T13:14:22Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/together_5ec4b701-228c-4e26-b80c-f23c5e5e0970.jpg?v=1744118062",
        "id": 34124070977588,
        "position": 1
      },
      "created_at": "2024-05-15T11:14:57Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003ch4 class=\"p1\"\u003e\n\u003cmeta charset=\"utf-8\"\u003eYour complete solution for short-term heating and cooling\u003cbr\u003e\n\u003c/h4\u003e\n\u003cp\u003e\u003cbr\u003e\u003c/p\u003e",
      "handle": "airbnb-for-hosts",
      "title": "Sensibo Airbnb Smart Package",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-04-08T13:14:22Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/together_5ec4b701-228c-4e26-b80c-f23c5e5e0970.jpg?v=1744118062",
          "id": 34124070977588,
          "position": 1
        },
        {
          "created_at": "2024-06-05T05:18:45Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor-2-179422.jpg?v=1744118062",
          "id": 32187011891252,
          "position": 2
        },
        {
          "created_at": "2024-06-05T05:18:45Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Control-2-969528.jpg?v=1744118062",
          "id": 32187011924020,
          "position": 3
        },
        {
          "created_at": "2025-02-26T13:39:53Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Airbnb-617438-262018_4018b967-64d4-443f-8018-74e91ab02570.webp?v=1744118062",
          "id": 33856209616948,
          "position": 4
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_3.webp?v=1744118062",
          "id": 33944928944180,
          "position": 5
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_1.webp?v=1744118062",
          "id": 33944928911412,
          "position": 6
        },
        {
          "created_at": "2025-03-11T14:13:18Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_4.webp?v=1744118062",
          "id": 33944929009716,
          "position": 7
        },
        {
          "created_at": "2025-03-11T14:13:17Z",
          "updated_at": "2025-04-08T13:14:22Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Door_Sensor_2.webp?v=1744118062",
          "id": 33944928976948,
          "position": 8
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Yearly Subscription"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-08T18:30:32Z",
          "created_at": "2024-05-15T11:14:57Z",
          "compare_at_price": "239.00",
          "fulfillment_service": "manual",
          "option1": "Yearly Subscription",
          "sku": "SEN-AIRBEND-YR-01",
          "inventory_policy": "continue",
          "price": "119.88",
          "title": "Yearly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 11988,
          "position": 1,
          "id": 43582257791028,
          "requires_shipping": true
        }
      ],
      "id": 7436561514548
    },
    {
      "updated_at": "2025-04-03T02:14:07Z",
      "published_at": "2022-05-23T13:11:35Z",
      "image": {
        "created_at": "2024-06-26T23:05:11Z",
        "updated_at": "2025-04-03T01:10:51Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/amazon-images-air-pro-box-819298.png?v=1743642651",
        "id": 32337509482548,
        "position": 1
      },
      "created_at": "2022-03-23T13:59:22Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4 data-pf-type=\"Heading\" class=\"sc-edERGn cHFtyQ pf-7_\"\u003eThe World’s #1 Smart AC Control\u003c/h4\u003e",
      "handle": "sensibo-air-pro",
      "title": "Sensibo Air PRO",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-06-26T23:05:11Z",
          "updated_at": "2025-04-03T01:10:51Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/amazon-images-air-pro-box-819298.png?v=1743642651",
          "id": 32337509482548,
          "position": 1
        },
        {
          "created_at": "2025-01-15T18:54:12Z",
          "updated_at": "2025-04-03T01:10:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/2_cb517cb1-6ef0-4404-b643-4c17b9f45c9e.jpg?v=1743642652",
          "id": 33604723736628,
          "position": 2
        },
        {
          "created_at": "2025-01-15T18:54:12Z",
          "updated_at": "2025-04-03T01:10:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/3_b8eaaf4b-d8d0-4e52-83e5-c680d3214b40.jpg?v=1743642652",
          "id": 33604723703860,
          "position": 3
        },
        {
          "created_at": "2025-01-15T18:54:12Z",
          "updated_at": "2025-04-03T01:10:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Product_phone.jpg?v=1743642652",
          "id": 33604723769396,
          "position": 4
        },
        {
          "created_at": "2024-12-26T22:48:08Z",
          "updated_at": "2025-04-03T01:10:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_Pro_1.jpg?v=1743642652",
          "id": 33769207726132,
          "position": 5
        },
        {
          "created_at": "2024-12-26T22:48:08Z",
          "updated_at": "2025-04-03T01:10:52Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_Pro_2.jpg?v=1743642652",
          "id": 33769207660596,
          "position": 6
        },
        {
          "created_at": "2024-12-26T22:48:08Z",
          "updated_at": "2025-04-03T01:10:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_Pro_3.jpg?v=1743642653",
          "id": 33769207693364,
          "position": 7
        },
        {
          "created_at": "2024-12-26T22:48:08Z",
          "updated_at": "2025-04-03T01:10:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_Pro_4.jpg?v=1743642653",
          "id": 33769207758900,
          "position": 8
        },
        {
          "created_at": "2024-12-26T22:48:08Z",
          "updated_at": "2025-04-03T01:10:53Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Air_Pro_5.jpg?v=1743642653",
          "id": 33769207791668,
          "position": 9
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2022-03-23T13:59:23Z",
          "barcode": "7290016037258",
          "compare_at_price": "215.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-AIRQ-CRL-01",
          "inventory_policy": "continue",
          "price": "135.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 13500,
          "position": 1,
          "id": 40001083179060,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2022-03-23T13:59:23Z",
          "barcode": "7290016037258",
          "compare_at_price": "215.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-AIRQ-CRL-01",
          "inventory_policy": "continue",
          "price": "135.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 13500,
          "position": 2,
          "id": 40001083211828,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2022-03-23T13:59:23Z",
          "barcode": "7290016037258",
          "compare_at_price": "215.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-AIRQ-CRL-01",
          "inventory_policy": "continue",
          "price": "133.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 13300,
          "position": 3,
          "id": 40001083244596,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2022-03-23T13:59:23Z",
          "barcode": "7290016037258",
          "compare_at_price": "215.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-AIRQ-CRL-01",
          "inventory_policy": "continue",
          "price": "129.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 12900,
          "position": 4,
          "id": 40001083277364,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 6747120730164
    },
    {
      "updated_at": "2025-04-03T02:14:07Z",
      "published_at": "2021-01-18T10:14:10Z",
      "image": {
        "created_at": "2024-08-05T11:48:54Z",
        "updated_at": "2025-04-03T01:11:07Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/RoomSensor_a2265571-8874-4913-8a99-f3c6ae57d7e2.jpg?v=1743642667",
        "id": 32637064642612,
        "position": 1
      },
      "created_at": "2021-01-18T10:11:12Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003e\n\u003cmeta charset=\"utf-8\"\u003eFor Improved Home Automation\u003cbr\u003e\n\u003c/h4\u003e",
      "handle": "room-sensor",
      "title": "Room Sensor",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-05T11:48:54Z",
          "updated_at": "2025-04-03T01:11:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/RoomSensor_a2265571-8874-4913-8a99-f3c6ae57d7e2.jpg?v=1743642667",
          "id": 32637064642612,
          "position": 1
        },
        {
          "created_at": "2024-11-26T11:44:14Z",
          "updated_at": "2025-04-03T01:11:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/roomsensorfrontview_608x608_fab6877a-8942-4176-ab68-7ca99efb0e97.jpg?v=1743642667",
          "id": 33364366852148,
          "position": 2
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-04-03T01:17:30Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor_1-min.jpg?v=1743643050",
          "id": 33799478837300,
          "position": 3
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-04-03T01:17:30Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor_2-min.jpg?v=1743643050",
          "id": 33799478804532,
          "position": 4
        },
        {
          "created_at": "2025-03-07T00:02:23Z",
          "updated_at": "2025-04-03T01:11:08Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor_3_2.jpg?v=1743642668",
          "id": 33905197809716,
          "position": 5
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-04-03T01:17:30Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensor_4-min.jpg?v=1743643050",
          "id": 33799478771764,
          "position": 6
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "One Sensor",
            "Two Sensors",
            "Three Sensors",
            "Four Sensors"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2021-01-18T10:11:12Z",
          "barcode": "7290016037180",
          "compare_at_price": "113.00",
          "fulfillment_service": "manual",
          "option1": "One Sensor",
          "option2": "1",
          "sku": "SEN-AIR-ROM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "One Sensor / 1",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 689,
          "position": 1,
          "id": 33102936342580,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2021-01-18T10:11:12Z",
          "barcode": "7290016037180",
          "compare_at_price": "113.00",
          "fulfillment_service": "manual",
          "option1": "Two Sensors",
          "option2": "2",
          "sku": "SEN-AIR-ROM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "Two Sensors / 2",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 770,
          "position": 2,
          "id": 33102936375348,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2021-01-18T10:11:12Z",
          "barcode": "7290016037180",
          "compare_at_price": "113.00",
          "fulfillment_service": "manual",
          "option1": "Three Sensors",
          "option2": "3",
          "sku": "SEN-AIR-ROM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "Three Sensors / 3",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 867,
          "position": 3,
          "id": 33102936408116,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-03T02:14:07Z",
          "created_at": "2021-01-18T10:11:12Z",
          "barcode": "7290016037180",
          "compare_at_price": "113.00",
          "fulfillment_service": "manual",
          "option1": "Four Sensors",
          "option2": "4",
          "sku": "SEN-AIR-ROM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "Four Sensors / 4",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 897,
          "position": 4,
          "id": 33102936440884,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 4873008283700
    },
    {
      "updated_at": "2025-04-10T01:09:59Z",
      "published_at": "2025-04-08T08:15:32Z",
      "image": {
        "created_at": "2025-04-03T13:53:11Z",
        "updated_at": "2025-04-08T13:14:33Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor_b2cc33d7-9de4-49e9-8730-bcc8b0b7dbe6.jpg?v=1744118073",
        "id": 34093582286900,
        "position": 1
      },
      "created_at": "2025-04-03T13:52:52Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003e\n\u003cmeta charset=\"utf-8\"\u003eThe Power Couple of Comfort and Efficiency\u003cbr\u003e\u003cbr\u003e\n\u003c/h4\u003e",
      "handle": "sensibo-air-pro-door-sensor",
      "title": "Sensibo Air Pro + Door Sensor",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-04-03T13:53:11Z",
          "updated_at": "2025-04-08T13:14:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor_b2cc33d7-9de4-49e9-8730-bcc8b0b7dbe6.jpg?v=1744118073",
          "id": 34093582286900,
          "position": 1
        },
        {
          "created_at": "2025-04-03T13:53:11Z",
          "updated_at": "2025-04-08T13:14:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor5_25143df2-b27f-4ac4-8f2d-54c229c3323a.jpg?v=1744118073",
          "id": 34093582319668,
          "position": 2
        },
        {
          "created_at": "2025-04-03T13:53:10Z",
          "updated_at": "2025-04-08T13:14:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor1_b6b947e2-a1db-49ee-9b7b-a05b71ca4463.jpg?v=1744118073",
          "id": 34093582417972,
          "position": 3
        },
        {
          "created_at": "2025-04-03T13:53:11Z",
          "updated_at": "2025-04-08T13:14:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor4_73bb6488-db43-4acb-9230-29c9aa4c5655.jpg?v=1744118073",
          "id": 34093582385204,
          "position": 4
        },
        {
          "created_at": "2025-04-03T13:53:10Z",
          "updated_at": "2025-04-08T13:14:34Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AirPRO_DoorSensor3_c78e0488-5efa-4fab-9b27-c3b21668a6fc.jpg?v=1744118074",
          "id": 34093582352436,
          "position": 5
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-10T01:09:59Z",
          "created_at": "2025-04-03T13:52:53Z",
          "barcode": "7290016037258",
          "compare_at_price": "287.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-AIR-PRO-SET-01",
          "inventory_policy": "continue",
          "price": "185.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 18500,
          "position": 1,
          "id": 45966094893108,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-10T01:09:59Z",
          "created_at": "2025-04-03T13:52:53Z",
          "barcode": "7290016037258",
          "compare_at_price": "287.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-AIR-PRO-SET-01",
          "inventory_policy": "continue",
          "price": "185.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 18500,
          "position": 2,
          "id": 45966094925876,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-10T01:09:59Z",
          "created_at": "2025-04-03T13:52:53Z",
          "barcode": "7290016037258",
          "compare_at_price": "287.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-AIR-PRO-SET-01",
          "inventory_policy": "continue",
          "price": "179.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 17900,
          "position": 3,
          "id": 45966094958644,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-10T01:09:59Z",
          "created_at": "2025-04-03T13:52:53Z",
          "barcode": "7290016037258",
          "compare_at_price": "287.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-AIR-PRO-SET-01",
          "inventory_policy": "continue",
          "price": "173.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 17300,
          "position": 4,
          "id": 45966094991412,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 7764478427188
    },
    {
      "updated_at": "2025-04-02T18:16:12Z",
      "published_at": "2020-11-17T09:42:03Z",
      "image": {
        "created_at": "2024-08-06T05:45:41Z",
        "updated_at": "2025-03-23T15:25:57Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_94da51be-b9bc-4da2-b50e-943e642a00c2-297149.jpg?v=1742743557",
        "id": 32639995445300,
        "position": 1
      },
      "created_at": "2020-11-17T09:34:58Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eThe world's smartest air purifier\u003c/h4\u003e",
      "handle": "sensibo-pure",
      "title": "Sensibo Pure",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-06T05:45:41Z",
          "updated_at": "2025-03-23T15:25:57Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_94da51be-b9bc-4da2-b50e-943e642a00c2-297149.jpg?v=1742743557",
          "id": 32639995445300,
          "position": 1
        },
        {
          "created_at": "2025-02-17T21:08:43Z",
          "updated_at": "2025-03-23T15:25:57Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_0-min.jpg?v=1742743557",
          "id": 33800291450932,
          "position": 2
        },
        {
          "created_at": "2023-08-08T10:51:58Z",
          "updated_at": "2025-03-23T15:25:57Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-FILTER-INSIDE-827464.png?v=1742743557",
          "id": 30777183273012,
          "position": 3
        },
        {
          "created_at": "2023-08-08T10:51:58Z",
          "updated_at": "2025-03-23T15:25:57Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-HEPA-FILTER-215356.png?v=1742743557",
          "id": 30777183305780,
          "position": 4
        },
        {
          "created_at": "2023-08-08T10:51:58Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-FAN-VIEW-380618.png?v=1742743558",
          "id": 30777183338548,
          "position": 5
        },
        {
          "created_at": "2023-08-08T10:51:58Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-FRONT-VIEW-739541.png?v=1742743558",
          "id": 30777183371316,
          "position": 6
        },
        {
          "created_at": "2023-08-08T10:51:59Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-OVERHEAD-779562.png?v=1742743558",
          "id": 30777183404084,
          "position": 7
        },
        {
          "created_at": "2023-08-08T10:51:59Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-BACK-VIEW-683343.png?v=1742743558",
          "id": 30777183436852,
          "position": 8
        },
        {
          "created_at": "2023-08-08T10:51:59Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/PURE-BOTTOM-VIEW-618687.png?v=1742743558",
          "id": 30777183469620,
          "position": 9
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_1-min.jpg?v=1742743558",
          "id": 33799479099444,
          "position": 10
        },
        {
          "created_at": "2025-02-17T18:52:22Z",
          "updated_at": "2025-03-23T15:25:58Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_2-min.jpg?v=1742743558",
          "id": 33799505313844,
          "position": 11
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:59Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_3-min.jpg?v=1742743559",
          "id": 33799478935604,
          "position": 12
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:59Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_4-min.jpg?v=1742743559",
          "id": 33799479066676,
          "position": 13
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:59Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_5-min.jpg?v=1742743559",
          "id": 33799479164980,
          "position": 14
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-23T15:25:59Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Pure_6-min.jpg?v=1742743559",
          "id": 33799478902836,
          "position": 15
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:12Z",
          "created_at": "2020-11-17T09:34:58Z",
          "barcode": "7290016037210",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-PUR-01",
          "inventory_policy": "continue",
          "price": "129.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 12900,
          "inventory_quantity": 146,
          "position": 1,
          "id": 33055867240500,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:12Z",
          "created_at": "2020-11-17T09:34:58Z",
          "barcode": "7290016037210",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-PUR-01",
          "inventory_policy": "continue",
          "price": "129.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 12900,
          "inventory_quantity": 504,
          "position": 2,
          "id": 33055867273268,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:12Z",
          "created_at": "2020-11-17T09:34:58Z",
          "barcode": "7290016037210",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-PUR-01",
          "inventory_policy": "continue",
          "price": "127.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 12700,
          "inventory_quantity": 762,
          "position": 3,
          "id": 33055867306036,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:12Z",
          "created_at": "2020-11-17T09:34:58Z",
          "barcode": "7290016037210",
          "compare_at_price": "229.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-PUR-01",
          "inventory_policy": "continue",
          "price": "125.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 12500,
          "inventory_quantity": 779,
          "position": 4,
          "id": 33055867338804,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 4860247081012
    },
    {
      "tags": [
        "_wf_cus",
        "_wf_exc"
      ],
      "updated_at": "2025-04-11T03:10:18Z",
      "published_at": "2025-04-09T09:19:50Z",
      "created_at": "2025-04-09T09:19:50Z",
      "vendor": "Sensibo",
      "handle": "sensibo-replacement-remote-for-airbnb",
      "title": "Sensibo Replacement Remote for AirBnB",
      "published_scope": "web",
      "options": [
        {
          "name": "Title",
          "values": [
            "Default Title"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-11T03:10:18Z",
          "created_at": "2025-04-09T09:19:53Z",
          "barcode": "7290016037319",
          "fulfillment_service": "manual",
          "option1": "Default Title",
          "sku": "SEN-AIRBAND-01",
          "inventory_policy": "deny",
          "price": "29.00",
          "title": "Default Title",
          "weight_unit": "kg",
          "price_usd_cents": 2900,
          "inventory_quantity": -1,
          "position": 1,
          "id": 45979507392564,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 7769560678452
    },
    {
      "updated_at": "2025-04-02T18:16:11Z",
      "published_at": "2017-01-02T08:24:00Z",
      "image": {
        "created_at": "2025-03-05T10:48:39Z",
        "updated_at": "2025-03-23T15:26:10Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Sky_Gray_497b5e7d-927a-41dc-b669-64c86cf4301a.jpg?v=1742743570",
        "id": 33896424570932,
        "position": 1
      },
      "created_at": "2017-01-02T08:45:22Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eSmart AC Control\u003c/h4\u003e",
      "handle": "sensibo-sky",
      "title": "Sensibo Sky",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-03-05T10:48:39Z",
          "updated_at": "2025-03-23T15:26:10Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Sky_Gray_497b5e7d-927a-41dc-b669-64c86cf4301a.jpg?v=1742743570",
          "id": 33896424570932,
          "position": 1
        },
        {
          "created_at": "2025-03-11T14:18:31Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Product_phone_grey.jpg?v=1742743571",
          "id": 33944932253748,
          "position": 2
        },
        {
          "created_at": "2020-02-27T15:30:25Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/Minimised-M16_132856.jpg?v=1742743571",
          "id": 14090671587380,
          "position": 3
        },
        {
          "created_at": "2020-02-27T15:33:19Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/Minimised-M16_132895-1.jpg?v=1742743571",
          "id": 14090682695732,
          "position": 4
        },
        {
          "created_at": "2023-08-08T10:51:54Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/witb_0b4bbd26-bd96-47b4-8e2c-8c46bcd49982_1024x1024_1_1024x1024_1_1-662693.png?v=1742743571",
          "id": 30777182748724,
          "position": 5
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/7.webp?v=1742743571",
          "id": 33944932483124,
          "position": 6
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/1_0adb047e-7024-448e-9733-d1c04f7d56c6.webp?v=1742743571",
          "id": 33944932450356,
          "position": 7
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/4_d1f4592e-195d-406c-bc80-8a7c685c04c8.webp?v=1742743572",
          "id": 33944932417588,
          "position": 8
        },
        {
          "created_at": "2025-03-11T14:18:38Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/8.webp?v=1742743572",
          "id": 33944932646964,
          "position": 9
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/2_a48883e6-7d01-486c-b749-6485be9b9923.webp?v=1742743572",
          "id": 33944932581428,
          "position": 10
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/9.webp?v=1742743572",
          "id": 33944932515892,
          "position": 11
        },
        {
          "created_at": "2023-08-08T10:51:54Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/amazon-sky-black-features_1024x1024_1_1-128980.png?v=1742743572",
          "id": 30777182683188,
          "position": 12
        },
        {
          "created_at": "2023-08-08T10:51:54Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/amazon-sky-black-benefits_1024x1024_1-909103.png?v=1742743572",
          "id": 30777182715956,
          "position": 13
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2019-07-17T12:22:08Z",
          "barcode": "7290016037098",
          "compare_at_price": "127.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-SKY-01",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "89.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 8900,
          "inventory_quantity": 804,
          "position": 1,
          "id": 29008856252468,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2019-07-17T12:22:08Z",
          "barcode": "7290016037098",
          "compare_at_price": "127.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-SKY-01",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "89.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 8900,
          "inventory_quantity": 279,
          "position": 2,
          "id": 29008856285236,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2019-07-17T12:22:08Z",
          "barcode": "7290016037098",
          "compare_at_price": "127.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-SKY-01",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "87.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 8700,
          "inventory_quantity": 550,
          "position": 3,
          "id": 29008856318004,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2019-07-17T12:22:08Z",
          "barcode": "7290016037098",
          "compare_at_price": "127.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-SKY-01",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "85.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 8500,
          "inventory_quantity": 161,
          "position": 4,
          "id": 29008856350772,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 9353744974
    },
    {
      "updated_at": "2025-04-02T18:16:10Z",
      "published_at": "2022-09-19T11:27:29Z",
      "image": {
        "created_at": "2024-08-05T11:48:38Z",
        "updated_at": "2025-03-23T15:25:33Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Elements_5d969b3a-08ea-4526-86f8-19fb6b535468-196196.jpg?v=1742743533",
        "id": 32637063561268,
        "position": 1
      },
      "created_at": "2022-09-15T07:39:15Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003e\u003cstrong\u003e\u003cspan data-pf-type=\"Text\" class=\"sc-BHvUt fJlZte pf-210_\"\u003eSmart Air Quality Monitor\u003c/span\u003e\u003c/strong\u003e\u003c/h4\u003e",
      "handle": "sensibo-elements",
      "title": "Sensibo Elements",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-05T11:48:38Z",
          "updated_at": "2025-03-23T15:25:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Elements_5d969b3a-08ea-4526-86f8-19fb6b535468-196196.jpg?v=1742743533",
          "id": 32637063561268,
          "position": 1
        },
        {
          "created_at": "2025-02-26T13:38:59Z",
          "updated_at": "2025-03-23T15:25:33Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/ELEMENTS_3136a7d8-e7ba-44e9-b56c-6995ed011cf9.webp?v=1742743533",
          "id": 33856208896052,
          "position": 2
        },
        {
          "created_at": "2022-09-20T08:08:09Z",
          "updated_at": "2025-03-26T23:06:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/17T_30775-1_1.png?v=1743030406",
          "id": 29700463198260,
          "position": 3
        },
        {
          "created_at": "2022-09-20T08:08:09Z",
          "updated_at": "2025-03-26T23:06:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/17T_30736_1.png?v=1743030406",
          "id": 29700463132724,
          "position": 4
        },
        {
          "created_at": "2022-09-20T08:08:09Z",
          "updated_at": "2025-03-26T23:06:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/17T_30770-1_1.png?v=1743030406",
          "id": 29700463099956,
          "position": 5
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-27T07:40:01Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Elements_2-min.jpg?v=1743061201",
          "id": 33799478870068,
          "position": 6
        },
        {
          "created_at": "2025-02-19T13:25:12Z",
          "updated_at": "2025-03-27T07:40:01Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Elements_3-min.jpg?v=1743061201",
          "id": 33814417801268,
          "position": 7
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-26T23:06:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Elements_1-min.jpg?v=1743030406",
          "id": 33799479001140,
          "position": 8
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-26T23:06:46Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Elements_5-min.jpg?v=1743030406",
          "id": 33799479197748,
          "position": 9
        },
        {
          "created_at": "2025-02-17T18:47:31Z",
          "updated_at": "2025-03-27T07:40:01Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Elements_6-min.jpg?v=1743061201",
          "id": 33799478968372,
          "position": 10
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2022-09-15T07:39:15Z",
          "barcode": "7290016037265",
          "compare_at_price": "259.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-ELM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 32,
          "position": 1,
          "id": 40642441347124,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2022-09-15T07:39:15Z",
          "barcode": "7290016037265",
          "compare_at_price": "259.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-ELM-01",
          "inventory_policy": "continue",
          "price": "79.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 7900,
          "inventory_quantity": 432,
          "position": 2,
          "id": 40642441379892,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2022-09-15T07:39:15Z",
          "barcode": "7290016037265",
          "compare_at_price": "259.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-ELM-01",
          "inventory_policy": "continue",
          "price": "75.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 7500,
          "inventory_quantity": 636,
          "position": 3,
          "id": 40642441412660,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:10Z",
          "created_at": "2022-09-15T07:39:15Z",
          "barcode": "7290016037265",
          "compare_at_price": "259.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-ELM-01",
          "inventory_policy": "continue",
          "price": "72.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 7200,
          "inventory_quantity": 573,
          "position": 4,
          "id": 40642441445428,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 6935318167604
    },
    {
      "updated_at": "2025-04-04T17:01:33Z",
      "published_at": "2025-04-03T05:30:03Z",
      "image": {
        "created_at": "2024-08-06T05:45:42Z",
        "updated_at": "2025-04-03T05:30:04Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Shield-1_4ae11907-1f6e-423d-86c7-7d2705313c21-897778.jpg?v=1743658204",
        "id": 32639995510836,
        "position": 1
      },
      "created_at": "2021-10-05T08:10:28Z",
      "product_type": "Air Conditioner Accessories",
      "vendor": "Sensibo",
      "body_html": "\u003cp\u003e Sensibo Shield AC Filters\u003cbr data-mce-fragment=\"1\"\u003e\u003cbr\u003e\u003c/p\u003e",
      "handle": "sensibo-shield-filters",
      "title": "Sensibo Shield AC Filters",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-08-06T05:45:42Z",
          "updated_at": "2025-04-03T05:30:04Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Shield-1_4ae11907-1f6e-423d-86c7-7d2705313c21-897778.jpg?v=1743658204",
          "id": 32639995510836,
          "position": 1
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-04-03T05:30:04Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/shield-filter-product-application_1-244687.png?v=1743658204",
          "id": 30777182978100,
          "position": 2
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-04-03T05:30:04Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/filter2_1-565995.png?v=1743658204",
          "id": 30777183010868,
          "position": 3
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-04-03T05:30:05Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/shield-in-ex-247734.png?v=1743658205",
          "id": 30777183043636,
          "position": 4
        },
        {
          "created_at": "2021-10-05T08:10:36Z",
          "updated_at": "2025-04-03T05:30:05Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/ScreenShot2021-09-19at15.37.28_adc56ebd-cf37-49b9-9e95-66a8c8034065.png?v=1743658205",
          "id": 28100500455476,
          "position": 5
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "One filter pack"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-04T17:01:33Z",
          "created_at": "2021-12-15T09:00:25Z",
          "barcode": "7290016037241",
          "compare_at_price": "89.00",
          "fulfillment_service": "manual",
          "option1": "One filter pack",
          "sku": "SEN-AIRQ-FLR-01",
          "inventory_policy": "deny",
          "price": "59.00",
          "title": "One filter pack",
          "weight_unit": "kg",
          "price_usd_cents": 5900,
          "inventory_quantity": 997,
          "position": 1,
          "id": 39565504086068,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 6575688155188
    },
    {
      "updated_at": "2025-04-02T18:16:17Z",
      "published_at": "2023-06-14T16:22:02Z",
      "image": {
        "created_at": "2025-03-05T10:31:08Z",
        "updated_at": "2025-03-23T15:26:05Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Sky_White.jpg?v=1742743565",
        "id": 33896361066548,
        "position": 1
      },
      "created_at": "2019-02-11T10:51:53Z",
      "product_type": "HVAC Controls",
      "vendor": "Sensibo",
      "body_html": "\u003ch4\u003eSmart AC Control\u003c/h4\u003e",
      "handle": "sensibo-sky-white",
      "title": "Sensibo Sky",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2025-03-05T10:31:08Z",
          "updated_at": "2025-03-23T15:26:05Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Sensibo_Sky_White.jpg?v=1742743565",
          "id": 33896361066548,
          "position": 1
        },
        {
          "created_at": "2025-03-11T14:18:31Z",
          "updated_at": "2025-03-23T15:26:06Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Product_phone_203c6f91-6184-4c4c-83b0-8d82cf5b09db.jpg?v=1742743566",
          "id": 33944932286516,
          "position": 2
        },
        {
          "created_at": "2020-03-01T07:39:59Z",
          "updated_at": "2025-03-23T15:26:06Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/minimised-M16_128626.jpg?v=1742743566",
          "id": 14096108552244,
          "position": 3
        },
        {
          "created_at": "2020-03-01T07:41:03Z",
          "updated_at": "2025-03-23T15:26:06Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/minimised-M16_128691-1.jpg?v=1742743566",
          "id": 14096109142068,
          "position": 4
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-03-23T15:26:06Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/witb_1024x1024_1-761192.png?v=1742743566",
          "id": 30777183174708,
          "position": 5
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:06Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/0.webp?v=1742743566",
          "id": 33944932384820,
          "position": 6
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:11Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/1_0adb047e-7024-448e-9733-d1c04f7d56c6.webp?v=1742743571",
          "id": 33944932450356,
          "position": 7
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/2_a48883e6-7d01-486c-b749-6485be9b9923.webp?v=1742743572",
          "id": 33944932581428,
          "position": 8
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/3_5ec09c40-7bac-4525-b35f-49950e84cd3a.webp?v=1742743567",
          "id": 33944932614196,
          "position": 9
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:12Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/4_d1f4592e-195d-406c-bc80-8a7c685c04c8.webp?v=1742743572",
          "id": 33944932417588,
          "position": 10
        },
        {
          "created_at": "2025-03-11T14:18:37Z",
          "updated_at": "2025-03-23T15:26:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/5_2b7c343c-43af-49ea-b155-966c47256e40.webp?v=1742743567",
          "id": 33944932548660,
          "position": 11
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-03-23T15:26:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/amazon-sky-white-benefits_1024x1024_1-594794.png?v=1742743567",
          "id": 30777183141940,
          "position": 12
        },
        {
          "created_at": "2023-08-08T10:51:55Z",
          "updated_at": "2025-03-23T15:26:07Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/products/amazon-sky-white-features_1024x1024_1-675405.png?v=1742743567",
          "id": 30777183109172,
          "position": 13
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Single Kit",
            "Starter Kit",
            "Family Kit",
            "Expert Kit"
          ],
          "position": 1
        },
        {
          "name": "Quantity",
          "values": [
            "1",
            "2",
            "3",
            "4"
          ],
          "position": 2
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:17Z",
          "created_at": "2019-07-17T12:22:12Z",
          "barcode": "7290016037159",
          "compare_at_price": "140.00",
          "fulfillment_service": "manual",
          "option1": "Single Kit",
          "option2": "1",
          "sku": "SEN-SKY-01-WH",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "89.00",
          "title": "Single Kit / 1",
          "weight_unit": "kg",
          "price_usd_cents": 8900,
          "position": 1,
          "id": 29008856416308,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:17Z",
          "created_at": "2019-07-17T12:22:12Z",
          "barcode": "7290016037159",
          "compare_at_price": "140.00",
          "fulfillment_service": "manual",
          "option1": "Starter Kit",
          "option2": "2",
          "sku": "SEN-SKY-01-WH",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "89.00",
          "title": "Starter Kit / 2",
          "weight_unit": "kg",
          "price_usd_cents": 8900,
          "position": 2,
          "id": 29008856449076,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:17Z",
          "created_at": "2019-07-17T12:22:12Z",
          "barcode": "7290016037159",
          "compare_at_price": "140.00",
          "fulfillment_service": "manual",
          "option1": "Family Kit",
          "option2": "3",
          "sku": "SEN-SKY-01-WH",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "87.00",
          "title": "Family Kit / 3",
          "weight_unit": "kg",
          "price_usd_cents": 8700,
          "inventory_quantity": 26,
          "position": 3,
          "id": 29008856481844,
          "requires_shipping": true,
          "taxable": true
        },
        {
          "updated_at": "2025-04-02T18:16:17Z",
          "created_at": "2019-07-17T12:22:12Z",
          "barcode": "7290016037159",
          "compare_at_price": "140.00",
          "fulfillment_service": "manual",
          "option1": "Expert Kit",
          "option2": "4",
          "sku": "SEN-SKY-01-WH",
          "inventory_management": "shopify",
          "inventory_policy": "continue",
          "price": "85.00",
          "title": "Expert Kit / 4",
          "weight_unit": "kg",
          "price_usd_cents": 8500,
          "position": 4,
          "id": 29008856514612,
          "requires_shipping": true,
          "taxable": true
        }
      ],
      "id": 1566786781236
    },
    {
      "updated_at": "2025-04-02T18:16:11Z",
      "published_at": "2022-03-21T13:28:17Z",
      "image": {
        "created_at": "2024-01-31T12:21:57Z",
        "updated_at": "2025-03-23T15:25:41Z",
        "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/All-min.jpg?v=1742743541",
        "id": 31284078477364,
        "position": 1
      },
      "created_at": "2021-10-31T09:58:42Z",
      "product_type": "Heating, Ventilation \u0026 Air Conditioning",
      "vendor": "Sensibo",
      "body_html": "\u003cp class=\"p1\"\u003e\u003cmeta charset=\"utf-8\"\u003e\u003cstrong\u003eGet even more out of your AC!\u003c/strong\u003e Make your air conditioner more efficient with no long-term commitments. Cancel anytime for any reason.\u003c/p\u003e\n\u003cp\u003e\u003cbr\u003e\u003c/p\u003e",
      "handle": "sensibo-energy-saver-plan",
      "title": "Sensibo Energy Saver Plan",
      "published_scope": "web",
      "images": [
        {
          "created_at": "2024-01-31T12:21:57Z",
          "updated_at": "2025-03-23T15:25:41Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/All-min.jpg?v=1742743541",
          "id": 31284078477364,
          "position": 1
        },
        {
          "created_at": "2024-07-28T13:11:53Z",
          "updated_at": "2025-03-23T15:25:41Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Group_2100226100.jpg?v=1742743541",
          "id": 32590268170292,
          "position": 2
        },
        {
          "created_at": "2024-01-31T12:21:57Z",
          "updated_at": "2025-03-23T15:25:41Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Energy-min.jpg?v=1742743541",
          "id": 31284078608436,
          "position": 3
        },
        {
          "created_at": "2024-01-31T12:21:57Z",
          "updated_at": "2025-03-23T15:25:41Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Anti-Mold-min.jpg?v=1742743541",
          "id": 31284078641204,
          "position": 4
        },
        {
          "created_at": "2024-01-31T12:21:57Z",
          "updated_at": "2025-03-23T15:25:41Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/HealthCheck-min.jpg?v=1742743541",
          "id": 31284078673972,
          "position": 5
        },
        {
          "created_at": "2024-01-31T12:21:57Z",
          "updated_at": "2025-03-23T15:25:42Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Optimus-min.jpg?v=1742743542",
          "id": 31284078542900,
          "position": 6
        },
        {
          "created_at": "2024-07-25T13:25:00Z",
          "updated_at": "2025-03-23T15:25:42Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/AC_Saver_Plan.webp?v=1742743542",
          "id": 32581863145524,
          "position": 7
        },
        {
          "created_at": "2024-08-13T00:43:14Z",
          "updated_at": "2025-03-23T15:25:42Z",
          "src": "https://cdn.shopify.com/s/files/1/1669/6891/files/Img-product-extended-2-min.jpg?v=1742743542",
          "id": 32673076707380,
          "position": 8
        }
      ],
      "options": [
        {
          "name": "Title",
          "values": [
            "Yearly Subscription",
            "Monthly Subscription"
          ],
          "position": 1
        }
      ],
      "variants": [
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2021-10-31T09:58:42Z",
          "compare_at_price": "60.00",
          "fulfillment_service": "manual",
          "option1": "Yearly Subscription",
          "sku": "SEN-PLUS-YR-01",
          "inventory_policy": "deny",
          "price": "30.00",
          "title": "Yearly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 3000,
          "inventory_quantity": 542,
          "position": 1,
          "id": 39433978642484
        },
        {
          "updated_at": "2025-04-02T18:16:11Z",
          "created_at": "2022-02-07T08:13:00Z",
          "compare_at_price": "6.00",
          "fulfillment_service": "manual",
          "option1": "Monthly Subscription",
          "sku": "SEN-PLUS-MONTH-01",
          "inventory_policy": "deny",
          "price": "6.00",
          "title": "Monthly Subscription",
          "weight_unit": "kg",
          "price_usd_cents": 600,
          "inventory_quantity": 1000,
          "position": 2,
          "id": 39776363315252
        }
      ],
      "id": 6587286618164
    }
  ],
  "total": 19
}


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"
  ]
}

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
fields

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.

limit

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.

author_email
The email address of the Account that created the List.
name
The name of the List.

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.

category
The category of the social media account (if any).
description
A description of the social media account.
domain_names
The list of domain names that the social media account is associated with.
followers
The number of the followers for the social media account.
followers_30d
The change in the number of the followers for the social media account over the last 30 days.
followers_90d
The change in the number of the followers for the social media account over the last 90 days.
following
The number of the handles the social media account is following.
likes
The number of the likes for the social media account (is not returned if not known).
posts
The number of the posts for the social media account (is not returned if not known).

Retrieve a Social Media Account

Retrieves the details of a Social Media Account.

Plan Rate Limit
Enterprise 20 requests/second
Pro and Elite 5 requests/second
Example Request

$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/social?url=https://twitter.com/amazon'

Example Response

{
  "details": {
    "description": "Delivering smiles one box at a time . Use @AmazonHelp for customer support and @AmazonNews for the latest.",
    "followers": 6000000,
    "following": 50,
    "posts": 45830,
    "type": "twitter",
    "value": "https://twitter.com/amazon"
  },
  "domain_names": [
    "www.amazon.com",
    "www.amazon.es",
    "www.amazon.ca",
    "zouton.com",
    "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.

name
The name of the Technology.
description
A description of the Technology.
installed_at

The time at which the Technology was installed by a Domain.

icon_url
The URL of the Technology's icon.
installs
The number of active stores that have the Technology installed (if known).
installs_time_series
A time series of historical install counts. This field is only available when retrieving data for a single Technology and must be requested explicitly using the fields request option.

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": 1725219
  }
}

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
fields

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.

page

The page of results to return. Default: 0.

page_size

The number of Apps to return in a single query. Default: 50, Max: 50.

sort

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

q

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": "Tangiblee",
      "description": "Immersive shopping and augmented reality (AR) solutions for top brands.",
      "vendor_url": "https://www.tangiblee.com",
      "icon_url": "https://storeleads.app/img/tech/tangiblee.png",
      "installs": 294
    },
    {
      "name": "Attentive",
      "description": "The most comprehensive text message marketing solution, driving an average of 18.5% of total online revenue for our customers.",
      "vendor_url": "https://www.attentivemobile.com",
      "icon_url": "https://storeleads.app/img/tech/attentive.png",
      "installs": 13164
    }
  ]
}


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.

  1. If you don't already have it installed, visit https://www.getpostman.com/ and install the Postman client.
  2. Click the Run in Postman button below to open Postman and import the Store Leads API Postman collection.

Button

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.