Check out our free Chrome Extension.

Calculated Values

Overview

Calculated Values execute an arbitrary expression to generate a custom value for inclusion in CSV exports, CRM integrations and search filters and results.

Expressions are written in Common Expression Language. CEL expressions can be tricky to write so don't hesitate to ask for help.

Note: Calculated Values are only available on the Enterprise plan.

Creating a Calculated Value

To create a Calculated Value, go to the Calculated Value page and click the Add New Calculated Value button. You'll need to provide the follow fields to define the Calculated Value and then click the Save button:

  • Name: The name of the calculated value.
  • Search Filter: Enable the checkbox to use the Calculated Value as a filter within Store Leads search.
  • Expression: The expression that is evaluated against every domain. See some example expressions below.
Define Calculated Value
Define Calculated Value.

Since expressions can be tricky to write, it helps to test the expression against a sample domain. To do so, simply click the Test Expression button.

To include Calculated Values in search results, click on the Calculated Values tab in the search result column picker. Then open the Calculated Values section and select the columns to include in search results.

Calculated Values in Search Results
Calculated Values in Search Results.

Calculated Values as Search Filters

If the Search Filter option is enabled, the Calculated Value can be used as a filter for search results. Search filters are calculated nightly so you may have to wait up to 24 hours for the filter to become available. Depending on the expression, the filter may be available in Basic Search, Advanced Search or both.

Calculated Values as Search Filter
Calculated Values as Search Filter.

Note: Using calculated values as a search filter is only available on the Enterprise plan.

Calculated Values in CSV Exports

To include Calculated Values in CSV exports, click on the Calculated Values tab in the Export dialog. Click the Add New Column button to add a one-time expression to the CSV export. Otherwise, you can address an expression in a saved Calculated Value.

Calculated Values in CSV Exports
Calculated Values in CSV Exports.

Calculated Values in CRM Integrations

Calculated Values can also be used to write custom values to CRM Integrations. For more details, refer to our documentation for your CRM:

Example Expressions

Count the number of installed technologies:

has(_domain.technologies) ? _domain.technologies.size() : 0

Count the number of installed apps:

has(_domain.apps) ? _domain.apps.size() : 0

Count the number of technologies installed in the last 14 days:

has(_domain.technology_details) ? _domain.technology_details.filter(k,
  now - _domain.technology_details[k].installed_at < duration("336h")
).size() : 0

Count the number of apps installed in the last 14 days:

has(_domain.app_details) ? _domain.app_details.filter(k,
  now - _domain.app_details[k].installed_at < duration("336h")
).size() : 0

Determine whether a specific technology is installed:

has(_domain.technologies) ? _domain.technologies.contains('Affirm') : false

Filter list of technologies to only include specific technologies of interest (output as a comma-separated string):

has(_domain.technologies) ? _domain.technologies.filter(s,
  s in ['Collabstr', 'CreatorIQ']
).join(',') : ''

Generate a list of unique apps and technologies installed on the domain.
Update: can now use the new app_and_tech_details attribute (see below).

(
  (has(_domain.technologies) ? _domain.technologies : []) +
  (has(_domain.app_details) ? _domain.app_details.map(k,
    has(_domain.app_details[k].technology) ?
      _domain.app_details[k].technology :
      _domain.app_details[k].name
  ) : [])
).unique().sort().join(',')

Generate a list of unique apps and technologies installed on the domain along with their install date.

(has(_domain.app_and_tech_details) ?
  _domain.app_and_tech_details.map(k,
    has(_domain.app_and_tech_details[k].installed_at) ?
      _domain.app_and_tech_details[k].name + "," + _domain.app_and_tech_details[k].installed_at.format("2006/01/02") :
      _domain.app_and_tech_details[k].name + ",unknown"
  ) : []
).join(',')

Retrieving the name of the most-recently installed app or technology.

has(_domain.app_and_tech_details) && _domain.app_and_tech_details.size() > 0 ?
  _domain.app_and_tech_details.sort_by_installed_at("desc")[0].name :
  ''

Listing the titles of the 3 most recently published products.

_domain.product_search({"page_size": 3, "s": "published_at_unix"}).products.map(p, p.title)

Listing the titles of up to 3 products matching a search for "shoes" ordered by most recently published products.

_domain.product_search({"q": "shoes", "page_size": 3, "s": "published_at_unix"}).products.map(p, p.title)

Show the list (and count) of vendor attributes across all products sold at the store.

_domain.product_search({"fl": "vendor"}).aggregations.vendor.buckets

Available Attributes

The following attributes are available for use within expressions. Please get in touch if you need access to additional attributes within expressions.

_domain.about_us_page_url
The URL of the Domain's "About Us" page (if any).
_domain.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.
_domain.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.
_domain.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. This is a map (also called a dictionary in some programming languages) of locale name to domain name.
_domain.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). Only available for Shopify stores using the regular (non-headless) frontend.
_domain.avg_price_usd
The average price of products sold on the Domain in cents of USD. Only available for Shopify stores using the regular (non-headless) frontend.
_domain.avg_weight
The average weight of products (in grams) sold on the Domain. Only available for Shopify stores using the regular (non-headless) frontend.
_domain.app_details
A detailed list of Apps installed on the Domain. (e.g., [{ name: "Privy", platform: "shopify", installed_at: "2020-04-15T18:44:01Z", categories: ["Email marketing", "Pop-ups"] }])
_domain.brand_advocate_page_url
The URL of the Domain's "Brand Advocate" page (if any).
_domain.brands_page_url
The URL of the Domain's "Brands" page (if any).
_domain.categories
A list of the Domain's categories. (e.g., ["/Apparel/Footwear"])
_domain.city
The city of the Domain (if known). This value often represents the city of the associated merchant's headquarters.
_domain.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.
_domain.cluster_domain_country_codes
For merchants that have multiple domains (e.g., merchant.com, merchant.co.uk and merchant.com.au), cluster_domain_country_codes contains a list of unique country codes for all domains in the cluster.
_domain.combined_followers
The sum of followers across all social media accounts.
_domain.contact_info
A list of emails, phones and social media accounts associated with the store's website.
_domain.contact_page_url
The URL of the Domain's "Contact" page (if any).
_domain.copyright
The copyright text provided on the Domain's website (if any). This copyright text is difficult to extract and is not always accurate.
_domain.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.
_domain.currency_code
The 3-letter ISO currency code of the Domain.
_domain.custom_matches
A list of custom match names that matched this domain.
_domain.estimated_page_views
The estimated total monthly page views for the Domain.
_domain.estimated_sales
The estimated total monthly sales for the merchant. Values in cents of USD.
_domain.estimated_visits
The estimated total monthly visits for the Domain.
_domain.faq_page_url
The URL of the Domain's "FAQ" page (if any).
_domain.features
A list of the Domain's features. (e.g., ["Contact Page", "Tracking Page"])
_domain.financing_page_url
The URL of the Domain's "Financing" page (if any).
_domain.name
The Domain name (e.g., www.fashionnova.com)
_domain.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.
_domain.localization_count
The number of localizations on the Domain's website. Only known for Shopify stores using the standard frontend.
_domain.localizations
A list of the Domain's localizations, if known. (e.g., ["en-us", "en-ca", "fr-fr"]). Only known for Shopify stores using the standard frontend.
_domain.max_price
The price of the most expensive product sold on the Domain. Only available for Shopify stores using the regular (non-headless) frontend.
_domain.merchant_name
The name of the merchant that is selling on the Domain.
_domain.min_price
The price of the least expensive product sold on the Domain. Only available for Shopify stores using the regular (non-headless) frontend.
_domain.pinterest_followers
The number of followers for the Domain's Pinterest account.
_domain.plan
The name of the ecommerce platform's pricing plan that the merchant is using (if known). e.g., "Shopify Plus"
_domain.platform
The name of the ecommerce platform used by the Domain (e.g., shopify)
_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.
_domain.postal_code
The postal code of the Domain (if known). This value is available for a very small subset of overall stores.
_domain.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.
_domain.product_search
Runs an arbitrary search for products sold by the Domain. Product search is only available for standard Shopify stores and is only available on the Enterprise plan.
_domain.products_created_30
The number of products created in the last 30 days sold by the Domain. Only available for standard Shopify stores.
_domain.products_created_90
The number of products created in the last 90 days sold by the Domain. Only available for standard Shopify stores.
_domain.products_created_365
The number of products created in the last 365 days sold by the Domain. Only available for standard Shopify stores.
_domain.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.
_domain.retailer_page_url
The URL of the Domain's "Retailer" page (if any).
_domain.returns_page_url
The URL of the Domain's "Returns" page (if any).
_domain.shopify_app_names
A list of Shopify Apps installed on the Domain, identified by App name. (e.g., ["Privy", "Yotpo: Loyalty & Rewards"])
_domain.shopify_app_tokens
A list of Shopify Apps installed on the Domain, identified by App token. (e.g., ["privy", "swell"])
_domain.state
The state of the Domain. Can be one of the following values: Active, Inactive, Password Protected or Redirect.
_domain.store_locator_page_url
The URL of the Domain's "Store Locator" page (if any).
_domain.technologies
A list of technologies installed on the Domain. (e.g., ["Affirm", "Google Analytics"])
_domain.technology_details
A detailed list of technologies installed on the Domain. (e.g., [{ name: "Affirm", installed_at: "2020-04-15T18:44:01Z" }])
_domain.tiktok_followers
The number of followers for the Domain's TikTok account.
_domain.theme_name
The name of the Domain's theme (if known).
_domain.theme_vendor
The name of the vendor of the Domain's theme (if known).
_domain.theme_version
The version of the Domain's theme (if known).
_domain.tracking_page_url
The URL of the Domain's "Tracking" page (if any).
_domain.trustpilot_average_rating
The average rating of TrustPilot reviews for the merchant (if any).
_domain.trustpilot_reviews
The number of TrustPilot reviews for the merchant (if any).
_domain.twitter_followers
The number of followers for the Domain's Twitter account.
_domain.warranty_page_url
The URL of the Domain's "Warranty" page (if any).
_domain.youtube_followers
The number of followers for the Domain's YouTube account.
now
The current time.
{
  "_domain": {
    "about_us_page_url": "https://www.rhodeskin.com/pages/about-us",
    "administrative_area_level_1": "New Jersey",
    "aliases": [
      "glossrhodeskin.store"
    ],
    "alternates": {
      "en-at": "www.rhodeskin.com",
      "en-au": "www.rhodeskin.com",
      "en-ca": "www.rhodeskin.com",
      "en-de": "www.rhodeskin.com",
      "en-dk": "www.rhodeskin.com",
      "en-es": "www.rhodeskin.com",
      "en-fi": "www.rhodeskin.com",
      "en-fr": "www.rhodeskin.com",
      "en-gb": "www.rhodeskin.com",
      "en-gr": "www.rhodeskin.com",
      "en-ie": "www.rhodeskin.com",
      "en-it": "www.rhodeskin.com",
      "en-nl": "www.rhodeskin.com",
      "en-nz": "www.rhodeskin.com",
      "en-pl": "www.rhodeskin.com",
      "en-se": "www.rhodeskin.com",
      "en-us": "www.rhodeskin.com",
      "x-default": "www.rhodeskin.com"
    },
    "app_and_tech_details": {
      "Address Validator": {
        "all_names": [
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2024-01-10T17:15:33Z",
        "installed_at_sfdc": "2024-01-10T17:15:33+00:00",
        "name": "Address Validator",
        "shopify_app": {
          "all_names": [
            "Clearer.io Address Validator",
            "Address Validator Plus",
            "Address Validator"
          ],
          "categories": [
            "shipping",
            "shipping solutions - other"
          ],
          "installed_at": "2024-01-10T17:15:33Z",
          "installed_at_sfdc": "2024-01-10T17:15:33+00:00",
          "name": "Clearer.io Address Validator",
          "platform": "shopify",
          "platform_install_rank": 587,
          "technology": "Address Validator"
        }
      },
      "Afterpay": {
        "all_names": [
          "Afterpay"
        ],
        "installed_at": "2022-06-24T00:18:58Z",
        "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
        "name": "Afterpay"
      },
      "Amp Back in Stock | PreOrder": {
        "all_names": [
          "Back in Stock: Restock Alerts",
          "AMP | Back in Stock",
          "AMP ‑ Back in Stock",
          "AMP Back in Stock | PreOrder",
          "Amp Back in Stock | PreOrder"
        ],
        "categories": [
          "stock alerts",
          "email marketing"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Amp Back in Stock | PreOrder",
        "platform": "shopify",
        "platform_install_rank": 95,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Apple Pay": {
        "all_names": [
          "Apple Pay"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Apple Pay"
      },
      "Arrive": {
        "all_names": [
          "Arrive"
        ],
        "installed_at": "2024-02-16T02:46:43Z",
        "installed_at_sfdc": "2024-02-16T02:46:43+00:00",
        "name": "Arrive"
      },
      "Attentive": {
        "all_names": [
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2022-04-05T21:14:12Z",
        "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
        "name": "Attentive",
        "shopify_app": {
          "all_names": [
            "Attentive: AI‑led Email \u0026SMS",
            "Attentive: SMS + MMS Marketing",
            "Attentive"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2024-05-01T05:10:19Z",
          "installed_at_sfdc": "2024-05-01T05:10:19+00:00",
          "name": "Attentive: AI‑led Email \u0026SMS",
          "platform": "shopify",
          "platform_install_rank": 234,
          "technology": "Attentive"
        }
      },
      "Australia Post": {
        "all_names": [
          "Australia Post"
        ],
        "installed_at": "2022-02-08T05:56:43Z",
        "installed_at_sfdc": "2022-02-08T05:56:43+00:00",
        "name": "Australia Post",
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "BOGOS: Free Gift Bundle Upsell": {
        "all_names": [
          "BOGOS: Free Gift Bundle Upsell",
          "BOGOS.io Free Gift BOGO Bundle",
          "BOGOS.io Free Gift Buy X Get Y"
        ],
        "categories": [
          "upsell and cross-sell",
          "product bundles"
        ],
        "installed_at": "2025-07-17T23:18:31Z",
        "installed_at_sfdc": "2025-07-17T23:18:31+00:00",
        "name": "BOGOS: Free Gift Bundle Upsell",
        "platform": "shopify",
        "platform_install_rank": 162
      },
      "Canada Post": {
        "all_names": [
          "Canada Post"
        ],
        "installed_at": "2024-11-28T06:21:37Z",
        "installed_at_sfdc": "2024-11-28T06:21:37+00:00",
        "name": "Canada Post",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "ClearForMe": {
        "all_names": [
          "ClearForMe"
        ],
        "categories": [
          "store data importer",
          "collections"
        ],
        "installed_at": "2024-06-11T18:50:51Z",
        "installed_at_sfdc": "2024-06-11T18:50:51+00:00",
        "name": "ClearForMe",
        "platform": "shopify",
        "platform_install_rank": 3905,
        "uninstalled_at": "2025-08-12T16:14:30Z",
        "uninstalled_at_sfdc": "2025-08-12T16:14:30+00:00"
      },
      "Cloudflare": {
        "all_names": [
          "Cloudflare"
        ],
        "installed_at": "2023-10-31T13:56:32Z",
        "installed_at_sfdc": "2023-10-31T13:56:32+00:00",
        "name": "Cloudflare"
      },
      "Cloudflare CDN": {
        "all_names": [
          "Cloudflare CDN"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Cloudflare CDN"
      },
      "Convert": {
        "all_names": [
          "Convert"
        ],
        "installed_at": "2023-12-13T19:23:57Z",
        "installed_at_sfdc": "2023-12-13T19:23:57+00:00",
        "name": "Convert"
      },
      "Cozy Country Redirect": {
        "all_names": [
          "Cozy Country Redirect"
        ],
        "categories": [
          "geolocation",
          "currency and translation"
        ],
        "installed_at": "2023-05-10T13:10:23Z",
        "installed_at_sfdc": "2023-05-10T13:10:23+00:00",
        "name": "Cozy Country Redirect",
        "platform": "shopify",
        "platform_install_rank": 521
      },
      "Facebook Pixel": {
        "all_names": [
          "Facebook Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Facebook Pixel"
      },
      "Fedex": {
        "all_names": [
          "Fedex"
        ],
        "installed_at": "2023-01-19T04:56:19Z",
        "installed_at_sfdc": "2023-01-19T04:56:19+00:00",
        "name": "Fedex",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "Geolocation": {
        "all_names": [
          "Geolocation"
        ],
        "categories": [
          "internationalization - other"
        ],
        "installed_at": "2023-03-13T22:25:06Z",
        "installed_at_sfdc": "2023-03-13T22:25:06+00:00",
        "name": "Geolocation",
        "platform": "shopify",
        "platform_install_rank": 23
      },
      "Google Ads Pixel": {
        "all_names": [
          "Google Ads Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Google Ads Pixel"
      },
      "Google Adsense": {
        "all_names": [
          "Google Adsense"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "Google Adsense"
      },
      "Google Analytics": {
        "all_names": [
          "Google Analytics"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Google Analytics",
        "uninstalled_at": "2025-04-22T00:41:01Z",
        "uninstalled_at_sfdc": "2025-04-22T00:41:01+00:00"
      },
      "Google Analytics Enhanced Ecommerce": {
        "all_names": [
          "Google Analytics Enhanced Ecommerce"
        ],
        "installed_at": "2022-06-02T13:43:22Z",
        "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
        "name": "Google Analytics Enhanced Ecommerce",
        "uninstalled_at": "2025-02-25T21:44:50Z",
        "uninstalled_at_sfdc": "2025-02-25T21:44:50+00:00"
      },
      "Google Pay": {
        "all_names": [
          "Google Pay"
        ],
        "installed_at": "2022-03-10T19:18:05Z",
        "installed_at_sfdc": "2022-03-10T19:18:05+00:00",
        "name": "Google Pay"
      },
      "Google Tag Manager": {
        "all_names": [
          "Google Tag Manager"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "Google Tag Manager"
      },
      "Impact": {
        "all_names": [
          "Impact"
        ],
        "categories": [
          "affiliate programs",
          "content - other"
        ],
        "installed_at": "2025-10-09T18:46:17Z",
        "installed_at_sfdc": "2025-10-09T18:46:17+00:00",
        "name": "Impact",
        "shopify_app": {
          "all_names": [
            "impact.com Affiliate Marketing",
            "Impact"
          ],
          "categories": [
            "affiliate programs",
            "content - other"
          ],
          "installed_at": "2025-10-09T18:46:17Z",
          "installed_at_sfdc": "2025-10-09T18:46:17+00:00",
          "name": "impact.com Affiliate Marketing",
          "platform": "shopify",
          "platform_install_rank": 470,
          "technology": "Impact"
        }
      },
      "Judge.me": {
        "all_names": [
          "Judge.me"
        ],
        "installed_at": "2023-06-02T10:25:15Z",
        "installed_at_sfdc": "2023-06-02T10:25:15+00:00",
        "name": "Judge.me",
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Judge.me Product Reviews App": {
        "all_names": [
          "Judge.me Product Reviews App",
          "Judge.me Product Reviews"
        ],
        "categories": [
          "product reviews",
          "seo"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Judge.me Product Reviews App",
        "platform": "shopify",
        "platform_install_rank": 1,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Klaviyo": {
        "all_names": [
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2022-04-05T21:14:12Z",
        "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
        "name": "Klaviyo",
        "shopify_app": {
          "all_names": [
            "Klaviyo: Email Marketing \u0026 SMS",
            "Klaviyo"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2022-04-05T21:14:12Z",
          "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
          "name": "Klaviyo: Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 2,
          "technology": "Klaviyo"
        }
      },
      "Kustomer": {
        "all_names": [
          "Kustomer"
        ],
        "categories": [
          "chat",
          "helpdesk"
        ],
        "installed_at": "2023-02-02T21:14:30Z",
        "installed_at_sfdc": "2023-02-02T21:14:30+00:00",
        "name": "Kustomer",
        "shopify_app": {
          "all_names": [
            "Kustomer"
          ],
          "categories": [
            "chat",
            "helpdesk"
          ],
          "installed_at": "2023-02-02T21:14:30Z",
          "installed_at_sfdc": "2023-02-02T21:14:30+00:00",
          "name": "Kustomer",
          "platform": "shopify",
          "platform_install_rank": 1334,
          "technology": "Kustomer"
        }
      },
      "Loop Returns": {
        "all_names": [
          "Loop Returns"
        ],
        "categories": [
          "returns and exchanges",
          "order tracking"
        ],
        "installed_at": "2025-11-06T04:56:46Z",
        "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
        "name": "Loop Returns",
        "shopify_app": {
          "all_names": [
            "Loop Returns \u0026 Exchanges",
            "Loop Returns"
          ],
          "categories": [
            "returns and exchanges",
            "order tracking"
          ],
          "installed_at": "2025-11-06T04:56:46Z",
          "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
          "name": "Loop Returns \u0026 Exchanges",
          "platform": "shopify",
          "platform_install_rank": 332,
          "technology": "Loop Returns",
          "uninstalled_at": "2025-11-21T00:03:58Z",
          "uninstalled_at_sfdc": "2025-11-21T00:03:58+00:00"
        },
        "uninstalled_at": "2025-11-21T00:03:58Z",
        "uninstalled_at_sfdc": "2025-11-21T00:03:58+00:00"
      },
      "Microsoft Clarity": {
        "all_names": [
          "Microsoft Clarity"
        ],
        "installed_at": "2023-11-01T00:27:54Z",
        "installed_at_sfdc": "2023-11-01T00:27:54+00:00",
        "name": "Microsoft Clarity"
      },
      "NoFraud": {
        "all_names": [
          "NoFraud"
        ],
        "categories": [
          "fraud"
        ],
        "installed_at": "2022-06-02T13:43:22Z",
        "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
        "name": "NoFraud",
        "shopify_app": {
          "all_names": [
            "NoFraud Fraud Protection",
            "NoFraud"
          ],
          "categories": [
            "fraud"
          ],
          "installed_at": "2022-06-02T13:43:22Z",
          "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
          "name": "NoFraud Fraud Protection",
          "platform": "shopify",
          "platform_install_rank": 283,
          "technology": "NoFraud"
        }
      },
      "Okendo": {
        "all_names": [
          "Okendo"
        ],
        "categories": [
          "product reviews",
          "loyalty and rewards"
        ],
        "installed_at": "2022-06-24T00:18:58Z",
        "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
        "name": "Okendo",
        "shopify_app": {
          "all_names": [
            "Okendo: Reviews \u0026 Loyalty",
            "Okendo: Product Reviews \u0026 UGC",
            "Okendo"
          ],
          "categories": [
            "product reviews",
            "loyalty and rewards"
          ],
          "installed_at": "2022-06-24T00:18:58Z",
          "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
          "name": "Okendo: Reviews \u0026 Loyalty",
          "platform": "shopify",
          "platform_install_rank": 129,
          "technology": "Okendo"
        }
      },
      "Omnisend": {
        "all_names": [
          "Omnisend"
        ],
        "categories": [
          "email marketing",
          "pop-ups"
        ],
        "installed_at": "2023-01-21T13:15:48Z",
        "installed_at_sfdc": "2023-01-21T13:15:48+00:00",
        "name": "Omnisend",
        "shopify_app": {
          "all_names": [
            "Omnisend Email Marketing \u0026 SMS",
            "Omnisend"
          ],
          "categories": [
            "email marketing",
            "pop-ups"
          ],
          "installed_at": "2021-12-24T22:41:25Z",
          "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
          "name": "Omnisend Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 17,
          "technology": "Omnisend",
          "uninstalled_at": "2026-01-02T13:16:19Z",
          "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
        },
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Osano": {
        "all_names": [
          "Osano"
        ],
        "installed_at": "2024-07-16T22:54:43Z",
        "installed_at_sfdc": "2024-07-16T22:54:43+00:00",
        "name": "Osano"
      },
      "Pandectes GDPR Compliance": {
        "all_names": [
          "Pandectes GDPR Compliance"
        ],
        "categories": [
          "banners",
          "cookie consent"
        ],
        "installed_at": "2023-01-26T07:33:09Z",
        "installed_at_sfdc": "2023-01-26T07:33:09+00:00",
        "name": "Pandectes GDPR Compliance",
        "platform": "shopify",
        "platform_install_rank": 47,
        "uninstalled_at": "2023-06-15T08:29:37Z",
        "uninstalled_at_sfdc": "2023-06-15T08:29:37+00:00"
      },
      "PayPal": {
        "all_names": [
          "PayPal"
        ],
        "installed_at": "2024-07-16T22:54:43Z",
        "installed_at_sfdc": "2024-07-16T22:54:43+00:00",
        "name": "PayPal",
        "uninstalled_at": "2024-10-04T04:41:27Z",
        "uninstalled_at_sfdc": "2024-10-04T04:41:27+00:00"
      },
      "PayPal Express Checkout": {
        "all_names": [
          "PayPal Express Checkout"
        ],
        "installed_at": "2022-11-07T20:41:17Z",
        "installed_at_sfdc": "2022-11-07T20:41:17+00:00",
        "name": "PayPal Express Checkout"
      },
      "Pinterest Pixel": {
        "all_names": [
          "Pinterest Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Pinterest Pixel"
      },
      "Postscript": {
        "all_names": [
          "Postscript"
        ],
        "categories": [
          "abandoned cart",
          "sms marketing"
        ],
        "installed_at": "2023-05-31T09:12:56Z",
        "installed_at_sfdc": "2023-05-31T09:12:56+00:00",
        "name": "Postscript",
        "shopify_app": {
          "all_names": [
            "Postscript SMS Marketing",
            "Postscript SMS \u0026 MMS Marketing",
            "Postscript"
          ],
          "categories": [
            "abandoned cart",
            "sms marketing"
          ],
          "installed_at": "2023-05-31T09:12:56Z",
          "installed_at_sfdc": "2023-05-31T09:12:56+00:00",
          "name": "Postscript SMS Marketing",
          "platform": "shopify",
          "platform_install_rank": 97,
          "technology": "Postscript"
        }
      },
      "ReCharge": {
        "all_names": [
          "ReCharge"
        ],
        "categories": [
          "subscriptions",
          "product bundles"
        ],
        "installed_at": "2022-12-02T23:31:13Z",
        "installed_at_sfdc": "2022-12-02T23:31:13+00:00",
        "name": "ReCharge",
        "shopify_app": {
          "all_names": [
            "Recharge Subscriptions App",
            "Recharge Subscriptions",
            "ReCharge"
          ],
          "categories": [
            "subscriptions",
            "product bundles"
          ],
          "installed_at": "2022-12-02T23:31:13Z",
          "installed_at_sfdc": "2022-12-02T23:31:13+00:00",
          "name": "Recharge Subscriptions App",
          "platform": "shopify",
          "platform_install_rank": 28,
          "technology": "ReCharge"
        }
      },
      "Rebuy Personalization Engine": {
        "all_names": [
          "Rebuy Personalization Engine"
        ],
        "categories": [
          "upsell and cross-sell",
          "cart customization"
        ],
        "installed_at": "2024-02-08T05:13:01Z",
        "installed_at_sfdc": "2024-02-08T05:13:01+00:00",
        "name": "Rebuy Personalization Engine",
        "platform": "shopify",
        "platform_install_rank": 154
      },
      "Shop Pay": {
        "all_names": [
          "Shop Pay"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Shop Pay"
      },
      "Shopify Collabs": {
        "all_names": [
          "Shopify Collabs",
          "Dovetale: Creator management"
        ],
        "categories": [
          "affiliate programs",
          "discounts"
        ],
        "installed_at": "2023-03-21T05:06:29Z",
        "installed_at_sfdc": "2023-03-21T05:06:29+00:00",
        "name": "Shopify Collabs",
        "platform": "shopify",
        "platform_install_rank": 198,
        "uninstalled_at": "2023-05-25T01:21:32Z",
        "uninstalled_at_sfdc": "2023-05-25T01:21:32+00:00"
      },
      "Shopify Fulfillment Network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T12:09:00Z",
        "installed_at_sfdc": "2023-11-23T12:09:00+00:00",
        "name": "Shopify Fulfillment Network",
        "shopify_app": {
          "all_names": [
            "Shopify Fulfillment Network"
          ],
          "categories": [
            "outsourced fulfillment",
            "fulfilling orders - other"
          ],
          "installed_at": "2023-11-23T12:09:00Z",
          "installed_at_sfdc": "2023-11-23T12:09:00+00:00",
          "name": "Shopify Fulfillment Network",
          "platform": "shopify",
          "platform_install_rank": 3058,
          "technology": "Shopify Fulfillment Network",
          "uninstalled_at": "2023-12-13T19:23:57Z",
          "uninstalled_at_sfdc": "2023-12-13T19:23:57+00:00"
        },
        "uninstalled_at": "2023-12-13T19:23:57Z",
        "uninstalled_at_sfdc": "2023-12-13T19:23:57+00:00"
      },
      "Snap Pixel": {
        "all_names": [
          "Snap Pixel"
        ],
        "installed_at": "2022-07-21T06:12:16Z",
        "installed_at_sfdc": "2022-07-21T06:12:16+00:00",
        "name": "Snap Pixel",
        "uninstalled_at": "2022-07-29T14:02:09Z",
        "uninstalled_at_sfdc": "2022-07-29T14:02:09+00:00"
      },
      "Stack Discounts Pro": {
        "all_names": [
          "Stack Discounts Ninja | PG",
          "Stack Discounts Ninja",
          "Stack Discounts Pro"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2025-11-21T00:03:58Z",
        "installed_at_sfdc": "2025-11-21T00:03:58+00:00",
        "name": "Stack Discounts Pro",
        "platform": "shopify",
        "platform_install_rank": 1372
      },
      "Stockist Store Locator": {
        "all_names": [
          "Stockist Store Locator"
        ],
        "categories": [
          "store locator"
        ],
        "installed_at": "2025-09-04T15:43:13Z",
        "installed_at_sfdc": "2025-09-04T15:43:13+00:00",
        "name": "Stockist Store Locator",
        "platform": "shopify",
        "platform_install_rank": 168
      },
      "TikTok Pixel": {
        "all_names": [
          "TikTok Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "TikTok Pixel"
      },
      "Tolstoy AI Shoppable Video UGC": {
        "all_names": [
          "Tolstoy AI Shoppable Video UGC",
          "Tolstoy Shoppable Video \u0026 UGC",
          "Tolstoy AI Shoppable Videos"
        ],
        "categories": [
          "video and livestream",
          "social proof"
        ],
        "installed_at": "2024-08-06T13:27:10Z",
        "installed_at_sfdc": "2024-08-06T13:27:10+00:00",
        "name": "Tolstoy AI Shoppable Video UGC",
        "platform": "shopify",
        "platform_install_rank": 226
      },
      "UPS": {
        "all_names": [
          "UPS"
        ],
        "installed_at": "2022-02-08T05:56:43Z",
        "installed_at_sfdc": "2022-02-08T05:56:43+00:00",
        "name": "UPS",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "Vimeo": {
        "all_names": [
          "Vimeo"
        ],
        "installed_at": "2022-03-10T19:18:05Z",
        "installed_at_sfdc": "2022-03-10T19:18:05+00:00",
        "name": "Vimeo"
      },
      "ViralSweep Giveaways Contests": {
        "all_names": [
          "ViralSweep Giveaways Contests"
        ],
        "categories": [
          "giveaways and contests",
          "promotions - other"
        ],
        "installed_at": "2022-03-18T20:26:46Z",
        "installed_at_sfdc": "2022-03-18T20:26:46+00:00",
        "name": "ViralSweep Giveaways Contests",
        "platform": "shopify",
        "platform_install_rank": 996,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "YouTube Player": {
        "all_names": [
          "YouTube Player"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "YouTube Player"
      },
      "dotdigital": {
        "all_names": [
          "dotdigital"
        ],
        "categories": [
          "email marketing",
          "analytics"
        ],
        "installed_at": "2025-12-08T07:51:11Z",
        "installed_at_sfdc": "2025-12-08T07:51:11+00:00",
        "name": "dotdigital",
        "shopify_app": {
          "all_names": [
            "Dotdigital CXDP",
            "Dotdigital Email\u0026SMS Marketing",
            "dotdigital"
          ],
          "categories": [
            "email marketing",
            "analytics"
          ],
          "installed_at": "2025-12-08T07:51:11Z",
          "installed_at_sfdc": "2025-12-08T07:51:11+00:00",
          "name": "Dotdigital CXDP",
          "platform": "shopify",
          "platform_install_rank": 1009,
          "technology": "dotdigital"
        }
      },
      "reCAPTCHA": {
        "all_names": [
          "reCAPTCHA"
        ],
        "installed_at": "2023-11-01T00:27:54Z",
        "installed_at_sfdc": "2023-11-01T00:27:54+00:00",
        "name": "reCAPTCHA",
        "uninstalled_at": "2025-04-22T00:41:01Z",
        "uninstalled_at_sfdc": "2025-04-22T00:41:01+00:00"
      },
      "shop my": {
        "all_names": [
          "shop my"
        ],
        "installed_at": "2025-11-06T04:56:46Z",
        "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
        "name": "shop my"
      },
      "smsbump": {
        "all_names": [
          "smsbump"
        ],
        "installed_at": "2022-02-15T17:44:03Z",
        "installed_at_sfdc": "2022-02-15T17:44:03+00:00",
        "name": "smsbump",
        "uninstalled_at": "2022-03-02T08:33:57Z",
        "uninstalled_at_sfdc": "2022-03-02T08:33:57+00:00"
      }
    },
    "app_details": {
      "1.address-validator": {
        "all_names": [
          "Clearer.io Address Validator",
          "Address Validator Plus",
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2024-01-10T17:15:33Z",
        "installed_at_sfdc": "2024-01-10T17:15:33+00:00",
        "name": "Clearer.io Address Validator",
        "platform": "shopify",
        "platform_install_rank": 587,
        "technology": "Address Validator"
      },
      "1.attentive": {
        "all_names": [
          "Attentive: AI‑led Email \u0026SMS",
          "Attentive: SMS + MMS Marketing",
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2024-05-01T05:10:19Z",
        "installed_at_sfdc": "2024-05-01T05:10:19+00:00",
        "name": "Attentive: AI‑led Email \u0026SMS",
        "platform": "shopify",
        "platform_install_rank": 234,
        "technology": "Attentive"
      },
      "1.back-in-stock": {
        "all_names": [
          "Back in Stock: Restock Alerts",
          "AMP | Back in Stock",
          "AMP ‑ Back in Stock",
          "AMP Back in Stock | PreOrder",
          "Amp Back in Stock | PreOrder"
        ],
        "categories": [
          "stock alerts",
          "email marketing"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Amp Back in Stock | PreOrder",
        "platform": "shopify",
        "platform_install_rank": 95,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "1.clearforme": {
        "all_names": [
          "ClearForMe"
        ],
        "categories": [
          "store data importer",
          "collections"
        ],
        "installed_at": "2024-06-11T18:50:51Z",
        "installed_at_sfdc": "2024-06-11T18:50:51+00:00",
        "name": "ClearForMe",
        "platform": "shopify",
        "platform_install_rank": 3905,
        "uninstalled_at": "2025-08-12T16:14:30Z",
        "uninstalled_at_sfdc": "2025-08-12T16:14:30+00:00"
      },
      "1.collabs": {
        "all_names": [
          "Shopify Collabs",
          "Dovetale: Creator management"
        ],
        "categories": [
          "affiliate programs",
          "discounts"
        ],
        "installed_at": "2023-03-21T05:06:29Z",
        "installed_at_sfdc": "2023-03-21T05:06:29+00:00",
        "name": "Shopify Collabs",
        "platform": "shopify",
        "platform_install_rank": 198,
        "uninstalled_at": "2023-05-25T01:21:32Z",
        "uninstalled_at_sfdc": "2023-05-25T01:21:32+00:00"
      },
      "1.cozy-country-redirect": {
        "all_names": [
          "Cozy Country Redirect"
        ],
        "categories": [
          "geolocation",
          "currency and translation"
        ],
        "installed_at": "2023-05-10T13:10:23Z",
        "installed_at_sfdc": "2023-05-10T13:10:23+00:00",
        "name": "Cozy Country Redirect",
        "platform": "shopify",
        "platform_install_rank": 521
      },
      "1.dotdigital": {
        "all_names": [
          "Dotdigital CXDP",
          "Dotdigital Email\u0026SMS Marketing",
          "dotdigital"
        ],
        "categories": [
          "email marketing",
          "analytics"
        ],
        "installed_at": "2025-12-08T07:51:11Z",
        "installed_at_sfdc": "2025-12-08T07:51:11+00:00",
        "name": "Dotdigital CXDP",
        "platform": "shopify",
        "platform_install_rank": 1009,
        "technology": "dotdigital"
      },
      "1.freegifts": {
        "all_names": [
          "BOGOS: Free Gift Bundle Upsell",
          "BOGOS.io Free Gift BOGO Bundle",
          "BOGOS.io Free Gift Buy X Get Y"
        ],
        "categories": [
          "upsell and cross-sell",
          "product bundles"
        ],
        "installed_at": "2025-07-17T23:18:31Z",
        "installed_at_sfdc": "2025-07-17T23:18:31+00:00",
        "name": "BOGOS: Free Gift Bundle Upsell",
        "platform": "shopify",
        "platform_install_rank": 162
      },
      "1.gdpr-cookie-consent": {
        "all_names": [
          "Pandectes GDPR Compliance"
        ],
        "categories": [
          "banners",
          "cookie consent"
        ],
        "installed_at": "2023-01-26T07:33:09Z",
        "installed_at_sfdc": "2023-01-26T07:33:09+00:00",
        "name": "Pandectes GDPR Compliance",
        "platform": "shopify",
        "platform_install_rank": 47,
        "uninstalled_at": "2023-06-15T08:29:37Z",
        "uninstalled_at_sfdc": "2023-06-15T08:29:37+00:00"
      },
      "1.geolocation": {
        "all_names": [
          "Geolocation"
        ],
        "categories": [
          "internationalization - other"
        ],
        "installed_at": "2023-03-13T22:25:06Z",
        "installed_at_sfdc": "2023-03-13T22:25:06+00:00",
        "name": "Geolocation",
        "platform": "shopify",
        "platform_install_rank": 23
      },
      "1.impact-1": {
        "all_names": [
          "impact.com Affiliate Marketing",
          "Impact"
        ],
        "categories": [
          "affiliate programs",
          "content - other"
        ],
        "installed_at": "2025-10-09T18:46:17Z",
        "installed_at_sfdc": "2025-10-09T18:46:17+00:00",
        "name": "impact.com Affiliate Marketing",
        "platform": "shopify",
        "platform_install_rank": 470,
        "technology": "Impact"
      },
      "1.judgeme": {
        "all_names": [
          "Judge.me Product Reviews App",
          "Judge.me Product Reviews"
        ],
        "categories": [
          "product reviews",
          "seo"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Judge.me Product Reviews App",
        "platform": "shopify",
        "platform_install_rank": 1,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "1.klaviyo-email-marketing": {
        "all_names": [
          "Klaviyo: Email Marketing \u0026 SMS",
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2022-04-05T21:14:12Z",
        "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
        "name": "Klaviyo: Email Marketing \u0026 SMS",
        "platform": "shopify",
        "platform_install_rank": 2,
        "technology": "Klaviyo"
      },
      "1.kustomer": {
        "all_names": [
          "Kustomer"
        ],
        "categories": [
          "chat",
          "helpdesk"
        ],
        "installed_at": "2023-02-02T21:14:30Z",
        "installed_at_sfdc": "2023-02-02T21:14:30+00:00",
        "name": "Kustomer",
        "platform": "shopify",
        "platform_install_rank": 1334,
        "technology": "Kustomer"
      },
      "1.loop-returns": {
        "all_names": [
          "Loop Returns \u0026 Exchanges",
          "Loop Returns"
        ],
        "categories": [
          "returns and exchanges",
          "order tracking"
        ],
        "installed_at": "2025-11-06T04:56:46Z",
        "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
        "name": "Loop Returns \u0026 Exchanges",
        "platform": "shopify",
        "platform_install_rank": 332,
        "technology": "Loop Returns",
        "uninstalled_at": "2025-11-21T00:03:58Z",
        "uninstalled_at_sfdc": "2025-11-21T00:03:58+00:00"
      },
      "1.nofraud-chargeback-prevention-and-protection": {
        "all_names": [
          "NoFraud Fraud Protection",
          "NoFraud"
        ],
        "categories": [
          "fraud"
        ],
        "installed_at": "2022-06-02T13:43:22Z",
        "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
        "name": "NoFraud Fraud Protection",
        "platform": "shopify",
        "platform_install_rank": 283,
        "technology": "NoFraud"
      },
      "1.okendo-reviews": {
        "all_names": [
          "Okendo: Reviews \u0026 Loyalty",
          "Okendo: Product Reviews \u0026 UGC",
          "Okendo"
        ],
        "categories": [
          "product reviews",
          "loyalty and rewards"
        ],
        "installed_at": "2022-06-24T00:18:58Z",
        "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
        "name": "Okendo: Reviews \u0026 Loyalty",
        "platform": "shopify",
        "platform_install_rank": 129,
        "technology": "Okendo"
      },
      "1.omnisend": {
        "all_names": [
          "Omnisend Email Marketing \u0026 SMS",
          "Omnisend"
        ],
        "categories": [
          "email marketing",
          "pop-ups"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Omnisend Email Marketing \u0026 SMS",
        "platform": "shopify",
        "platform_install_rank": 17,
        "technology": "Omnisend",
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "1.postscript-sms-marketing": {
        "all_names": [
          "Postscript SMS Marketing",
          "Postscript SMS \u0026 MMS Marketing",
          "Postscript"
        ],
        "categories": [
          "abandoned cart",
          "sms marketing"
        ],
        "installed_at": "2023-05-31T09:12:56Z",
        "installed_at_sfdc": "2023-05-31T09:12:56+00:00",
        "name": "Postscript SMS Marketing",
        "platform": "shopify",
        "platform_install_rank": 97,
        "technology": "Postscript"
      },
      "1.rebuy": {
        "all_names": [
          "Rebuy Personalization Engine"
        ],
        "categories": [
          "upsell and cross-sell",
          "cart customization"
        ],
        "installed_at": "2024-02-08T05:13:01Z",
        "installed_at_sfdc": "2024-02-08T05:13:01+00:00",
        "name": "Rebuy Personalization Engine",
        "platform": "shopify",
        "platform_install_rank": 154
      },
      "1.shopify-fulfillment-network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T12:09:00Z",
        "installed_at_sfdc": "2023-11-23T12:09:00+00:00",
        "name": "Shopify Fulfillment Network",
        "platform": "shopify",
        "platform_install_rank": 3058,
        "technology": "Shopify Fulfillment Network",
        "uninstalled_at": "2023-12-13T19:23:57Z",
        "uninstalled_at_sfdc": "2023-12-13T19:23:57+00:00"
      },
      "1.stack-discounts-pg": {
        "all_names": [
          "Stack Discounts Ninja | PG",
          "Stack Discounts Ninja",
          "Stack Discounts Pro"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2025-11-21T00:03:58Z",
        "installed_at_sfdc": "2025-11-21T00:03:58+00:00",
        "name": "Stack Discounts Pro",
        "platform": "shopify",
        "platform_install_rank": 1372
      },
      "1.stockist-store-locator": {
        "all_names": [
          "Stockist Store Locator"
        ],
        "categories": [
          "store locator"
        ],
        "installed_at": "2025-09-04T15:43:13Z",
        "installed_at_sfdc": "2025-09-04T15:43:13+00:00",
        "name": "Stockist Store Locator",
        "platform": "shopify",
        "platform_install_rank": 168
      },
      "1.subscription-payments": {
        "all_names": [
          "Recharge Subscriptions App",
          "Recharge Subscriptions",
          "ReCharge"
        ],
        "categories": [
          "subscriptions",
          "product bundles"
        ],
        "installed_at": "2022-12-02T23:31:13Z",
        "installed_at_sfdc": "2022-12-02T23:31:13+00:00",
        "name": "Recharge Subscriptions App",
        "platform": "shopify",
        "platform_install_rank": 28,
        "technology": "ReCharge"
      },
      "1.tolstoy": {
        "all_names": [
          "Tolstoy AI Shoppable Video UGC",
          "Tolstoy Shoppable Video \u0026 UGC",
          "Tolstoy AI Shoppable Videos"
        ],
        "categories": [
          "video and livestream",
          "social proof"
        ],
        "installed_at": "2024-08-06T13:27:10Z",
        "installed_at_sfdc": "2024-08-06T13:27:10+00:00",
        "name": "Tolstoy AI Shoppable Video UGC",
        "platform": "shopify",
        "platform_install_rank": 226
      },
      "1.viralsweep": {
        "all_names": [
          "ViralSweep Giveaways Contests"
        ],
        "categories": [
          "giveaways and contests",
          "promotions - other"
        ],
        "installed_at": "2022-03-18T20:26:46Z",
        "installed_at_sfdc": "2022-03-18T20:26:46+00:00",
        "name": "ViralSweep Giveaways Contests",
        "platform": "shopify",
        "platform_install_rank": 996,
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      }
    },
    "avg_price": 4206,
    "avg_price_usd": 4206,
    "avg_weight": 105,
    "brand_advocate_page_url": "",
    "brands_page_url": "",
    "categories": [
      "/Beauty \u0026 Fitness/Face \u0026 Body Care/Skin \u0026 Nail Care"
    ],
    "city": "North Brunswick Township",
    "cluster_domains": [
      "www.rhodeskin.com",
      "rhodeskin.co.in",
      "rhodeskin.com.ru"
    ],
    "combined_followers": 1900000,
    "contact_info": [
      {
        "followers": 0,
        "type": "linkedin",
        "url": "http://www.linkedin.com/company/rhodeskin",
        "value": "rhodeskin"
      },
      {
        "followers": 0,
        "type": "instagram",
        "url": "https://instagram.com/rhode",
        "value": "rhode"
      },
      {
        "followers": 0,
        "type": "pinterest",
        "url": "https://www.pinterest.com/rhode",
        "value": "rhode"
      },
      {
        "followers": 0,
        "type": "youtube",
        "url": "https://www.youtube.com/c/HaileyRhodeBieber",
        "value": "haileyrhodebieber"
      },
      {
        "followers": 1900000,
        "type": "tiktok",
        "url": "https://www.tiktok.com/@rhode",
        "value": "@rhode"
      },
      {
        "type": "email",
        "value": "hello@rhodeksin.com"
      }
    ],
    "contact_page_url": "https://www.rhodeskin.com/pages/contact-us",
    "copyright": "rhode",
    "country_code": "US",
    "currency_code": "USD",
    "estimated_page_views": 23146927,
    "estimated_sales": 2509570549,
    "estimated_visits": 6255926,
    "faq_page_url": "https://www.rhodeskin.com/pages/faq",
    "features": [
      "FAQ Page",
      "Recharge v2",
      "Shopify Online Store 2.0",
      "Product Page Video Tag",
      "New Shopify Checkout (2022)",
      "Accepts Gift Cards",
      "Contact Page",
      "Store Locator Page",
      "Has Blog"
    ],
    "financing_page_url": "",
    "id": 89587431,
    "klaviyo_features": [
      "Email Collection",
      "Phone Collection"
    ],
    "language_code": "en",
    "localization_count": 0,
    "localizations": null,
    "max_price": 13500,
    "merchant_name": "rhode",
    "min_price": 1600,
    "name": "www.rhodeskin.com",
    "pinterest_followers": 0,
    "plan": "Shopify Plus",
    "platform": "shopify",
    "platform_rank": 4,
    "postal_code": "",
    "product_count": 86,
    "products_created_30": 5,
    "products_created_365": 41,
    "products_created_90": 8,
    "rank": 204,
    "retailer_page_url": "",
    "returns_page_url": "",
    "shopify_app_names": [
      "Clearer.io Address Validator",
      "Attentive: AI‑led Email \u0026SMS",
      "Cozy Country Redirect",
      "Dotdigital CXDP",
      "BOGOS: Free Gift Bundle Upsell",
      "impact.com Affiliate Marketing",
      "Klaviyo: Email Marketing \u0026 SMS",
      "Kustomer",
      "NoFraud Fraud Protection",
      "Okendo: Reviews \u0026 Loyalty",
      "Postscript SMS Marketing",
      "Rebuy Personalization Engine",
      "Stack Discounts Pro",
      "Stockist Store Locator",
      "Recharge Subscriptions App",
      "Tolstoy AI Shoppable Video UGC"
    ],
    "shopify_app_tokens": [
      "address-validator",
      "attentive",
      "cozy-country-redirect",
      "dotdigital",
      "freegifts",
      "impact-1",
      "klaviyo-email-marketing",
      "kustomer",
      "nofraud-chargeback-prevention-and-protection",
      "okendo-reviews",
      "postscript-sms-marketing",
      "rebuy",
      "stack-discounts-pg",
      "stockist-store-locator",
      "subscription-payments",
      "tolstoy"
    ],
    "state": "Active",
    "store_locator_page_url": "https://www.rhodeskin.com/pages/store-locator",
    "technologies": [
      "Address Validator",
      "Afterpay",
      "Apple Pay",
      "Arrive",
      "Attentive",
      "Cloudflare",
      "Cloudflare CDN",
      "Convert",
      "Facebook Pixel",
      "Google Ads Pixel",
      "Google Adsense",
      "Google Pay",
      "Google Tag Manager",
      "Impact",
      "Klaviyo",
      "Kustomer",
      "Microsoft Clarity",
      "NoFraud",
      "Okendo",
      "Osano",
      "PayPal Express Checkout",
      "Pinterest Pixel",
      "Postscript",
      "ReCharge",
      "Shop Pay",
      "TikTok Pixel",
      "Vimeo",
      "YouTube Player",
      "dotdigital",
      "shop my"
    ],
    "technology_details": {
      "Address Validator": {
        "all_names": [
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2024-01-10T17:15:33Z",
        "installed_at_sfdc": "2024-01-10T17:15:33+00:00",
        "name": "Address Validator",
        "shopify_app": {
          "all_names": [
            "Clearer.io Address Validator",
            "Address Validator Plus",
            "Address Validator"
          ],
          "categories": [
            "shipping",
            "shipping solutions - other"
          ],
          "installed_at": "2024-01-10T17:15:33Z",
          "installed_at_sfdc": "2024-01-10T17:15:33+00:00",
          "name": "Clearer.io Address Validator",
          "platform": "shopify",
          "platform_install_rank": 587,
          "technology": "Address Validator"
        }
      },
      "Afterpay": {
        "all_names": [
          "Afterpay"
        ],
        "installed_at": "2022-06-24T00:18:58Z",
        "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
        "name": "Afterpay"
      },
      "Apple Pay": {
        "all_names": [
          "Apple Pay"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Apple Pay"
      },
      "Arrive": {
        "all_names": [
          "Arrive"
        ],
        "installed_at": "2024-02-16T02:46:43Z",
        "installed_at_sfdc": "2024-02-16T02:46:43+00:00",
        "name": "Arrive"
      },
      "Attentive": {
        "all_names": [
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2022-04-05T21:14:12Z",
        "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
        "name": "Attentive",
        "shopify_app": {
          "all_names": [
            "Attentive: AI‑led Email \u0026SMS",
            "Attentive: SMS + MMS Marketing",
            "Attentive"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2024-05-01T05:10:19Z",
          "installed_at_sfdc": "2024-05-01T05:10:19+00:00",
          "name": "Attentive: AI‑led Email \u0026SMS",
          "platform": "shopify",
          "platform_install_rank": 234,
          "technology": "Attentive"
        }
      },
      "Australia Post": {
        "all_names": [
          "Australia Post"
        ],
        "installed_at": "2022-02-08T05:56:43Z",
        "installed_at_sfdc": "2022-02-08T05:56:43+00:00",
        "name": "Australia Post",
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Canada Post": {
        "all_names": [
          "Canada Post"
        ],
        "installed_at": "2024-11-28T06:21:37Z",
        "installed_at_sfdc": "2024-11-28T06:21:37+00:00",
        "name": "Canada Post",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "Cloudflare": {
        "all_names": [
          "Cloudflare"
        ],
        "installed_at": "2023-10-31T13:56:32Z",
        "installed_at_sfdc": "2023-10-31T13:56:32+00:00",
        "name": "Cloudflare"
      },
      "Cloudflare CDN": {
        "all_names": [
          "Cloudflare CDN"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Cloudflare CDN"
      },
      "Convert": {
        "all_names": [
          "Convert"
        ],
        "installed_at": "2023-12-13T19:23:57Z",
        "installed_at_sfdc": "2023-12-13T19:23:57+00:00",
        "name": "Convert"
      },
      "Facebook Pixel": {
        "all_names": [
          "Facebook Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Facebook Pixel"
      },
      "Fedex": {
        "all_names": [
          "Fedex"
        ],
        "installed_at": "2023-01-19T04:56:19Z",
        "installed_at_sfdc": "2023-01-19T04:56:19+00:00",
        "name": "Fedex",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "Google Ads Pixel": {
        "all_names": [
          "Google Ads Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Google Ads Pixel"
      },
      "Google Adsense": {
        "all_names": [
          "Google Adsense"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "Google Adsense"
      },
      "Google Analytics": {
        "all_names": [
          "Google Analytics"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Google Analytics",
        "uninstalled_at": "2025-04-22T00:41:01Z",
        "uninstalled_at_sfdc": "2025-04-22T00:41:01+00:00"
      },
      "Google Analytics Enhanced Ecommerce": {
        "all_names": [
          "Google Analytics Enhanced Ecommerce"
        ],
        "installed_at": "2022-06-02T13:43:22Z",
        "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
        "name": "Google Analytics Enhanced Ecommerce",
        "uninstalled_at": "2025-02-25T21:44:50Z",
        "uninstalled_at_sfdc": "2025-02-25T21:44:50+00:00"
      },
      "Google Pay": {
        "all_names": [
          "Google Pay"
        ],
        "installed_at": "2022-03-10T19:18:05Z",
        "installed_at_sfdc": "2022-03-10T19:18:05+00:00",
        "name": "Google Pay"
      },
      "Google Tag Manager": {
        "all_names": [
          "Google Tag Manager"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "Google Tag Manager"
      },
      "Impact": {
        "all_names": [
          "Impact"
        ],
        "categories": [
          "affiliate programs",
          "content - other"
        ],
        "installed_at": "2025-10-09T18:46:17Z",
        "installed_at_sfdc": "2025-10-09T18:46:17+00:00",
        "name": "Impact",
        "shopify_app": {
          "all_names": [
            "impact.com Affiliate Marketing",
            "Impact"
          ],
          "categories": [
            "affiliate programs",
            "content - other"
          ],
          "installed_at": "2025-10-09T18:46:17Z",
          "installed_at_sfdc": "2025-10-09T18:46:17+00:00",
          "name": "impact.com Affiliate Marketing",
          "platform": "shopify",
          "platform_install_rank": 470,
          "technology": "Impact"
        }
      },
      "Judge.me": {
        "all_names": [
          "Judge.me"
        ],
        "installed_at": "2023-06-02T10:25:15Z",
        "installed_at_sfdc": "2023-06-02T10:25:15+00:00",
        "name": "Judge.me",
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Klaviyo": {
        "all_names": [
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2022-04-05T21:14:12Z",
        "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
        "name": "Klaviyo",
        "shopify_app": {
          "all_names": [
            "Klaviyo: Email Marketing \u0026 SMS",
            "Klaviyo"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2022-04-05T21:14:12Z",
          "installed_at_sfdc": "2022-04-05T21:14:12+00:00",
          "name": "Klaviyo: Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 2,
          "technology": "Klaviyo"
        }
      },
      "Kustomer": {
        "all_names": [
          "Kustomer"
        ],
        "categories": [
          "chat",
          "helpdesk"
        ],
        "installed_at": "2023-02-02T21:14:30Z",
        "installed_at_sfdc": "2023-02-02T21:14:30+00:00",
        "name": "Kustomer",
        "shopify_app": {
          "all_names": [
            "Kustomer"
          ],
          "categories": [
            "chat",
            "helpdesk"
          ],
          "installed_at": "2023-02-02T21:14:30Z",
          "installed_at_sfdc": "2023-02-02T21:14:30+00:00",
          "name": "Kustomer",
          "platform": "shopify",
          "platform_install_rank": 1334,
          "technology": "Kustomer"
        }
      },
      "Loop Returns": {
        "all_names": [
          "Loop Returns"
        ],
        "categories": [
          "returns and exchanges",
          "order tracking"
        ],
        "installed_at": "2025-11-06T04:56:46Z",
        "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
        "name": "Loop Returns",
        "shopify_app": {
          "all_names": [
            "Loop Returns \u0026 Exchanges",
            "Loop Returns"
          ],
          "categories": [
            "returns and exchanges",
            "order tracking"
          ],
          "installed_at": "2025-11-06T04:56:46Z",
          "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
          "name": "Loop Returns \u0026 Exchanges",
          "platform": "shopify",
          "platform_install_rank": 332,
          "technology": "Loop Returns",
          "uninstalled_at": "2025-11-21T00:03:58Z",
          "uninstalled_at_sfdc": "2025-11-21T00:03:58+00:00"
        },
        "uninstalled_at": "2025-11-21T00:03:58Z",
        "uninstalled_at_sfdc": "2025-11-21T00:03:58+00:00"
      },
      "Microsoft Clarity": {
        "all_names": [
          "Microsoft Clarity"
        ],
        "installed_at": "2023-11-01T00:27:54Z",
        "installed_at_sfdc": "2023-11-01T00:27:54+00:00",
        "name": "Microsoft Clarity"
      },
      "NoFraud": {
        "all_names": [
          "NoFraud"
        ],
        "categories": [
          "fraud"
        ],
        "installed_at": "2022-06-02T13:43:22Z",
        "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
        "name": "NoFraud",
        "shopify_app": {
          "all_names": [
            "NoFraud Fraud Protection",
            "NoFraud"
          ],
          "categories": [
            "fraud"
          ],
          "installed_at": "2022-06-02T13:43:22Z",
          "installed_at_sfdc": "2022-06-02T13:43:22+00:00",
          "name": "NoFraud Fraud Protection",
          "platform": "shopify",
          "platform_install_rank": 283,
          "technology": "NoFraud"
        }
      },
      "Okendo": {
        "all_names": [
          "Okendo"
        ],
        "categories": [
          "product reviews",
          "loyalty and rewards"
        ],
        "installed_at": "2022-06-24T00:18:58Z",
        "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
        "name": "Okendo",
        "shopify_app": {
          "all_names": [
            "Okendo: Reviews \u0026 Loyalty",
            "Okendo: Product Reviews \u0026 UGC",
            "Okendo"
          ],
          "categories": [
            "product reviews",
            "loyalty and rewards"
          ],
          "installed_at": "2022-06-24T00:18:58Z",
          "installed_at_sfdc": "2022-06-24T00:18:58+00:00",
          "name": "Okendo: Reviews \u0026 Loyalty",
          "platform": "shopify",
          "platform_install_rank": 129,
          "technology": "Okendo"
        }
      },
      "Omnisend": {
        "all_names": [
          "Omnisend"
        ],
        "categories": [
          "email marketing",
          "pop-ups"
        ],
        "installed_at": "2023-01-21T13:15:48Z",
        "installed_at_sfdc": "2023-01-21T13:15:48+00:00",
        "name": "Omnisend",
        "shopify_app": {
          "all_names": [
            "Omnisend Email Marketing \u0026 SMS",
            "Omnisend"
          ],
          "categories": [
            "email marketing",
            "pop-ups"
          ],
          "installed_at": "2021-12-24T22:41:25Z",
          "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
          "name": "Omnisend Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 17,
          "technology": "Omnisend",
          "uninstalled_at": "2026-01-02T13:16:19Z",
          "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
        },
        "uninstalled_at": "2026-01-02T13:16:19Z",
        "uninstalled_at_sfdc": "2026-01-02T13:16:19+00:00"
      },
      "Osano": {
        "all_names": [
          "Osano"
        ],
        "installed_at": "2024-07-16T22:54:43Z",
        "installed_at_sfdc": "2024-07-16T22:54:43+00:00",
        "name": "Osano"
      },
      "PayPal": {
        "all_names": [
          "PayPal"
        ],
        "installed_at": "2024-07-16T22:54:43Z",
        "installed_at_sfdc": "2024-07-16T22:54:43+00:00",
        "name": "PayPal",
        "uninstalled_at": "2024-10-04T04:41:27Z",
        "uninstalled_at_sfdc": "2024-10-04T04:41:27+00:00"
      },
      "PayPal Express Checkout": {
        "all_names": [
          "PayPal Express Checkout"
        ],
        "installed_at": "2022-11-07T20:41:17Z",
        "installed_at_sfdc": "2022-11-07T20:41:17+00:00",
        "name": "PayPal Express Checkout"
      },
      "Pinterest Pixel": {
        "all_names": [
          "Pinterest Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Pinterest Pixel"
      },
      "Postscript": {
        "all_names": [
          "Postscript"
        ],
        "categories": [
          "abandoned cart",
          "sms marketing"
        ],
        "installed_at": "2023-05-31T09:12:56Z",
        "installed_at_sfdc": "2023-05-31T09:12:56+00:00",
        "name": "Postscript",
        "shopify_app": {
          "all_names": [
            "Postscript SMS Marketing",
            "Postscript SMS \u0026 MMS Marketing",
            "Postscript"
          ],
          "categories": [
            "abandoned cart",
            "sms marketing"
          ],
          "installed_at": "2023-05-31T09:12:56Z",
          "installed_at_sfdc": "2023-05-31T09:12:56+00:00",
          "name": "Postscript SMS Marketing",
          "platform": "shopify",
          "platform_install_rank": 97,
          "technology": "Postscript"
        }
      },
      "ReCharge": {
        "all_names": [
          "ReCharge"
        ],
        "categories": [
          "subscriptions",
          "product bundles"
        ],
        "installed_at": "2022-12-02T23:31:13Z",
        "installed_at_sfdc": "2022-12-02T23:31:13+00:00",
        "name": "ReCharge",
        "shopify_app": {
          "all_names": [
            "Recharge Subscriptions App",
            "Recharge Subscriptions",
            "ReCharge"
          ],
          "categories": [
            "subscriptions",
            "product bundles"
          ],
          "installed_at": "2022-12-02T23:31:13Z",
          "installed_at_sfdc": "2022-12-02T23:31:13+00:00",
          "name": "Recharge Subscriptions App",
          "platform": "shopify",
          "platform_install_rank": 28,
          "technology": "ReCharge"
        }
      },
      "Shop Pay": {
        "all_names": [
          "Shop Pay"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "Shop Pay"
      },
      "Shopify Fulfillment Network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T12:09:00Z",
        "installed_at_sfdc": "2023-11-23T12:09:00+00:00",
        "name": "Shopify Fulfillment Network",
        "shopify_app": {
          "all_names": [
            "Shopify Fulfillment Network"
          ],
          "categories": [
            "outsourced fulfillment",
            "fulfilling orders - other"
          ],
          "installed_at": "2023-11-23T12:09:00Z",
          "installed_at_sfdc": "2023-11-23T12:09:00+00:00",
          "name": "Shopify Fulfillment Network",
          "platform": "shopify",
          "platform_install_rank": 3058,
          "technology": "Shopify Fulfillment Network",
          "uninstalled_at": "2023-12-13T19:23:57Z",
          "uninstalled_at_sfdc": "2023-12-13T19:23:57+00:00"
        },
        "uninstalled_at": "2023-12-13T19:23:57Z",
        "uninstalled_at_sfdc": "2023-12-13T19:23:57+00:00"
      },
      "Snap Pixel": {
        "all_names": [
          "Snap Pixel"
        ],
        "installed_at": "2022-07-21T06:12:16Z",
        "installed_at_sfdc": "2022-07-21T06:12:16+00:00",
        "name": "Snap Pixel",
        "uninstalled_at": "2022-07-29T14:02:09Z",
        "uninstalled_at_sfdc": "2022-07-29T14:02:09+00:00"
      },
      "TikTok Pixel": {
        "all_names": [
          "TikTok Pixel"
        ],
        "installed_at": "2021-12-24T22:41:25Z",
        "installed_at_sfdc": "2021-12-24T22:41:25+00:00",
        "name": "TikTok Pixel"
      },
      "UPS": {
        "all_names": [
          "UPS"
        ],
        "installed_at": "2022-02-08T05:56:43Z",
        "installed_at_sfdc": "2022-02-08T05:56:43+00:00",
        "name": "UPS",
        "uninstalled_at": "2025-01-09T18:10:19Z",
        "uninstalled_at_sfdc": "2025-01-09T18:10:19+00:00"
      },
      "Vimeo": {
        "all_names": [
          "Vimeo"
        ],
        "installed_at": "2022-03-10T19:18:05Z",
        "installed_at_sfdc": "2022-03-10T19:18:05+00:00",
        "name": "Vimeo"
      },
      "YouTube Player": {
        "all_names": [
          "YouTube Player"
        ],
        "installed_at": "2022-02-23T04:59:00Z",
        "installed_at_sfdc": "2022-02-23T04:59:00+00:00",
        "name": "YouTube Player"
      },
      "dotdigital": {
        "all_names": [
          "dotdigital"
        ],
        "categories": [
          "email marketing",
          "analytics"
        ],
        "installed_at": "2025-12-08T07:51:11Z",
        "installed_at_sfdc": "2025-12-08T07:51:11+00:00",
        "name": "dotdigital",
        "shopify_app": {
          "all_names": [
            "Dotdigital CXDP",
            "Dotdigital Email\u0026SMS Marketing",
            "dotdigital"
          ],
          "categories": [
            "email marketing",
            "analytics"
          ],
          "installed_at": "2025-12-08T07:51:11Z",
          "installed_at_sfdc": "2025-12-08T07:51:11+00:00",
          "name": "Dotdigital CXDP",
          "platform": "shopify",
          "platform_install_rank": 1009,
          "technology": "dotdigital"
        }
      },
      "reCAPTCHA": {
        "all_names": [
          "reCAPTCHA"
        ],
        "installed_at": "2023-11-01T00:27:54Z",
        "installed_at_sfdc": "2023-11-01T00:27:54+00:00",
        "name": "reCAPTCHA",
        "uninstalled_at": "2025-04-22T00:41:01Z",
        "uninstalled_at_sfdc": "2025-04-22T00:41:01+00:00"
      },
      "shop my": {
        "all_names": [
          "shop my"
        ],
        "installed_at": "2025-11-06T04:56:46Z",
        "installed_at_sfdc": "2025-11-06T04:56:46+00:00",
        "name": "shop my"
      },
      "smsbump": {
        "all_names": [
          "smsbump"
        ],
        "installed_at": "2022-02-15T17:44:03Z",
        "installed_at_sfdc": "2022-02-15T17:44:03+00:00",
        "name": "smsbump",
        "uninstalled_at": "2022-03-02T08:33:57Z",
        "uninstalled_at_sfdc": "2022-03-02T08:33:57+00:00"
      }
    },
    "theme_name": "rhode",
    "theme_vendor": "Unknown",
    "theme_version": "1.0.0",
    "tiktok_followers": 1900000,
    "tracking_page_url": "",
    "trustpilot_average_rating": 3.5,
    "trustpilot_reviews": 333,
    "twitter_followers": 0,
    "warranty_page_url": "",
    "youtube_followers": 0
  },
  "now": "2026-02-27T15:48:58.094441714Z"
}

CRM Attributes

If a CRM integration is enabled, attributes from the CRM can be referenced within calculated values.

With the Salesforce integration, Account fields are accessible under the _salesforce key. For instance:

_salesforce.Id
Refers to the Id field on the Account SObject in Salesforce.
_salesforce.ParentId
Refers to the ParentId field on the Account SObject in Salesforce.

With the HubSpot integration, Company properties are accessible under the _hubspot key. For instance:

_hubspot.domain
Refers to the domain property on the Company record in HubSpot.

As an example, the following expression returns true for Salesforce Accounts that have a Parent record.

has(_salesforce.ParentId)

Note: To use CRM attributes, the attributes need to be synchronized from the CRM into the Store Leads database. This process can take a few hours. As a result, it is not possible to interactively test expressions referencing CRM attributes if the CRM attribute has not yet been referenced in another expression (since the attribute has not yet been synchronized to the Store Leads database).