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" order 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., shopifyA)
_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.
_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.stanley1913.com/pages/about-stanley",
    "administrative_area_level_1": "Washington",
    "aliases": [
      "stanleybottles.com"
    ],
    "alternates": null,
    "app_and_tech_details": {
      "AWIN": {
        "all_names": [
          "Awin ‑ Affiliate Marketing",
          "AWIN"
        ],
        "categories": [
          "affiliate programs",
          "advertising - other"
        ],
        "installed_at": "2023-04-20T21:33:24Z",
        "installed_at_sfdc": "2023-04-20T21:33:24+00:00",
        "name": "Awin ‑ Affiliate Marketing",
        "platform": "shopify",
        "platform_install_rank": 185,
        "technology": "AWIN",
        "uninstalled_at": "2023-07-06T22:45:34Z",
        "uninstalled_at_sfdc": "2023-07-06T22:45:34+00:00"
      },
      "AddShoppers": {
        "all_names": [
          "AddShoppers"
        ],
        "installed_at": "2025-01-09T17:48:48Z",
        "installed_at_sfdc": "2025-01-09T17:48:48+00:00",
        "name": "AddShoppers"
      },
      "Address Validator": {
        "all_names": [
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2023-06-22T19:17:31Z",
        "installed_at_sfdc": "2023-06-22T19:17:31+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": "2022-07-26T22:47:49Z",
          "installed_at_sfdc": "2022-07-26T22:47:49+00:00",
          "name": "Clearer.io Address Validator",
          "platform": "shopify",
          "platform_install_rank": 595,
          "technology": "Address Validator",
          "uninstalled_at": "2025-08-08T04:33:27Z",
          "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
        },
        "uninstalled_at": "2025-08-08T04:33:27Z",
        "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
      },
      "Algolia": {
        "all_names": [
          "Algolia"
        ],
        "categories": [
          "search and filters",
          "upsell and cross-sell"
        ],
        "installed_at": "2024-11-07T16:37:00Z",
        "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
        "name": "Algolia",
        "shopify_app": {
          "all_names": [
            "Algolia AI Search \u0026 Discovery",
            "Algolia"
          ],
          "categories": [
            "search and filters",
            "upsell and cross-sell"
          ],
          "installed_at": "2024-11-07T16:37:00Z",
          "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
          "name": "Algolia AI Search \u0026 Discovery",
          "platform": "shopify",
          "platform_install_rank": 653,
          "technology": "Algolia"
        }
      },
      "Amazon Pay": {
        "all_names": [
          "Amazon Pay"
        ],
        "installed_at": "2022-01-29T12:29:55Z",
        "installed_at_sfdc": "2022-01-29T12:29:55+00:00",
        "name": "Amazon Pay",
        "uninstalled_at": "2024-03-13T07:35:38Z",
        "uninstalled_at_sfdc": "2024-03-13T07:35:38+00:00"
      },
      "Apple Pay": {
        "all_names": [
          "Apple Pay"
        ],
        "installed_at": "2020-11-10T20:02:34Z",
        "installed_at_sfdc": "2020-11-10T20:02:34+00:00",
        "name": "Apple Pay"
      },
      "Arrive": {
        "all_names": [
          "Arrive"
        ],
        "installed_at": "2024-02-16T02:20:22Z",
        "installed_at_sfdc": "2024-02-16T02:20:22+00:00",
        "name": "Arrive"
      },
      "Attentive": {
        "all_names": [
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2025-07-09T08:15:51Z",
        "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
        "name": "Attentive",
        "shopify_app": {
          "all_names": [
            "Attentive: SMS + MMS Marketing",
            "Attentive: AI‑led Email \u0026SMS",
            "Attentive"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2025-07-09T08:15:51Z",
          "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
          "name": "Attentive: AI‑led Email \u0026SMS",
          "platform": "shopify",
          "platform_install_rank": 239,
          "technology": "Attentive"
        }
      },
      "AvantLink": {
        "all_names": [
          "AvantLink"
        ],
        "installed_at": "2021-09-14T23:21:03Z",
        "installed_at_sfdc": "2021-09-14T23:21:03+00:00",
        "name": "AvantLink"
      },
      "AvantLink Affiliate Marketing": {
        "all_names": [
          "AvantLink Affiliate Marketing",
          "AvantLink Tracking"
        ],
        "categories": [
          "affiliate programs"
        ],
        "installed_at": "2024-12-14T02:34:29Z",
        "installed_at_sfdc": "2024-12-14T02:34:29+00:00",
        "name": "AvantLink Affiliate Marketing",
        "platform": "shopify",
        "platform_install_rank": 718
      },
      "Baazarvoice": {
        "all_names": [
          "Baazarvoice"
        ],
        "categories": [
          "product reviews",
          "social trust - other"
        ],
        "installed_at": "2024-08-20T21:15:01Z",
        "installed_at_sfdc": "2024-08-20T21:15:01+00:00",
        "name": "Baazarvoice",
        "shopify_app": {
          "all_names": [
            "Bazaarvoice Reviews \u0026 Photos",
            "Baazarvoice"
          ],
          "categories": [
            "product reviews",
            "social trust - other"
          ],
          "installed_at": "2024-08-20T21:15:01Z",
          "installed_at_sfdc": "2024-08-20T21:15:01+00:00",
          "name": "Bazaarvoice Reviews \u0026 Photos",
          "platform": "shopify",
          "platform_install_rank": 525,
          "technology": "Baazarvoice"
        }
      },
      "Billy Grace": {
        "all_names": [
          "Billy Grace"
        ],
        "installed_at": "2024-09-18T01:18:16Z",
        "installed_at_sfdc": "2024-09-18T01:18:16+00:00",
        "name": "Billy Grace"
      },
      "Bing Ads": {
        "all_names": [
          "Bing Ads"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Bing Ads"
      },
      "Checkmate": {
        "all_names": [
          "Checkmate",
          "Checked"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2025-06-30T23:56:26Z",
        "installed_at_sfdc": "2025-06-30T23:56:26+00:00",
        "name": "Checkmate",
        "platform": "shopify",
        "platform_install_rank": 1589,
        "uninstalled_at": "2025-07-09T08:15:51Z",
        "uninstalled_at_sfdc": "2025-07-09T08:15:51+00:00"
      },
      "Cloudflare": {
        "all_names": [
          "Cloudflare"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Cloudflare"
      },
      "Cloudflare CDN": {
        "all_names": [
          "Cloudflare CDN"
        ],
        "installed_at": "2021-06-08T15:55:16Z",
        "installed_at_sfdc": "2021-06-08T15:55:16+00:00",
        "name": "Cloudflare CDN"
      },
      "Contentsquare": {
        "all_names": [
          "Contentsquare"
        ],
        "installed_at": "2025-03-17T21:23:39Z",
        "installed_at_sfdc": "2025-03-17T21:23:39+00:00",
        "name": "Contentsquare"
      },
      "Convert": {
        "all_names": [
          "Convert"
        ],
        "installed_at": "2024-07-23T06:48:46Z",
        "installed_at_sfdc": "2024-07-23T06:48:46+00:00",
        "name": "Convert",
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Cookiebot": {
        "all_names": [
          "Cookiebot"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Cookiebot",
        "uninstalled_at": "2024-06-18T15:39:55Z",
        "uninstalled_at_sfdc": "2024-06-18T15:39:55+00:00"
      },
      "Criteo": {
        "all_names": [
          "Criteo"
        ],
        "categories": [
          "ads"
        ],
        "installed_at": "2020-09-29T17:58:04Z",
        "installed_at_sfdc": "2020-09-29T17:58:04+00:00",
        "name": "Criteo",
        "shopify_app": {
          "all_names": [
            "Criteo Sales Growth Ads",
            "Criteo"
          ],
          "categories": [
            "ads"
          ],
          "installed_at": "2025-02-19T12:57:20Z",
          "installed_at_sfdc": "2025-02-19T12:57:20+00:00",
          "name": "Criteo Sales Growth Ads",
          "platform": "shopify",
          "platform_install_rank": 323,
          "technology": "Criteo"
        }
      },
      "Curalate": {
        "all_names": [
          "Curalate"
        ],
        "installed_at": "2025-04-07T21:59:00Z",
        "installed_at_sfdc": "2025-04-07T21:59:00+00:00",
        "name": "Curalate"
      },
      "Disco Post Purchase Ad Network": {
        "all_names": [
          "Disco Post Purchase Ad Network",
          "Disco Post Purchase Ads",
          "co‑op Upsell and Cross‑promote"
        ],
        "categories": [
          "ads",
          "promotions - other"
        ],
        "installed_at": "2025-10-08T09:37:50Z",
        "installed_at_sfdc": "2025-10-08T09:37:50+00:00",
        "name": "Disco Post Purchase Ad Network",
        "platform": "shopify",
        "platform_install_rank": 1928
      },
      "Elevar Conversion Tracking": {
        "all_names": [
          "Elevar Conversion Tracking"
        ],
        "categories": [
          "ads",
          "analytics"
        ],
        "installed_at": "2025-07-09T08:15:51Z",
        "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
        "name": "Elevar Conversion Tracking",
        "platform": "shopify",
        "platform_install_rank": 228
      },
      "Essential Free Shipping Upsell": {
        "all_names": [
          "Essential Free Shipping Upsell"
        ],
        "categories": [
          "cart customization",
          "upsell and cross-sell"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Essential Free Shipping Upsell",
        "platform": "shopify",
        "platform_install_rank": 189,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "Facebook Pixel": {
        "all_names": [
          "Facebook Pixel"
        ],
        "installed_at": "2020-09-16T16:22:36Z",
        "installed_at_sfdc": "2020-09-16T16:22:36+00:00",
        "name": "Facebook Pixel"
      },
      "Foursixty Shoppable Social UGC": {
        "all_names": [
          "Foursixty Shoppable Social UGC"
        ],
        "categories": [
          "social proof",
          "image gallery"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Foursixty Shoppable Social UGC",
        "platform": "shopify",
        "platform_install_rank": 711,
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Freshchat": {
        "all_names": [
          "Freshchat"
        ],
        "installed_at": "2022-07-04T04:02:06Z",
        "installed_at_sfdc": "2022-07-04T04:02:06+00:00",
        "name": "Freshchat",
        "uninstalled_at": "2025-06-07T08:42:43Z",
        "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
      },
      "Freshdesk": {
        "all_names": [
          "Freshdesk"
        ],
        "installed_at": "2021-10-08T21:51:38Z",
        "installed_at_sfdc": "2021-10-08T21:51:38+00:00",
        "name": "Freshdesk",
        "uninstalled_at": "2025-08-08T04:33:27Z",
        "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
      },
      "GOVX ID Exclusive Discounts": {
        "all_names": [
          "GOVX ID Exclusive Discounts"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2024-04-23T06:02:43Z",
        "installed_at_sfdc": "2024-04-23T06:02:43+00:00",
        "name": "GOVX ID Exclusive Discounts",
        "platform": "shopify",
        "platform_install_rank": 330
      },
      "Geolocation Redirects Geo:Pro": {
        "all_names": [
          "Geolocation Redirects Geo:Pro",
          "Geo:Pro Geolocation Redirects"
        ],
        "categories": [
          "geolocation",
          "internationalization - other"
        ],
        "installed_at": "2023-08-03T20:29:45Z",
        "installed_at_sfdc": "2023-08-03T20:29:45+00:00",
        "name": "Geolocation Redirects Geo:Pro",
        "platform": "shopify",
        "platform_install_rank": 326
      },
      "Google Ads Pixel": {
        "all_names": [
          "Google Ads Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Ads Pixel"
      },
      "Google Adsense": {
        "all_names": [
          "Google Adsense"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Adsense"
      },
      "Google Analytics": {
        "all_names": [
          "Google Analytics"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Analytics",
        "uninstalled_at": "2023-07-06T22:45:34Z",
        "uninstalled_at_sfdc": "2023-07-06T22:45:34+00:00"
      },
      "Google Analytics Enhanced Ecommerce": {
        "all_names": [
          "Google Analytics Enhanced Ecommerce"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Google Analytics Enhanced Ecommerce",
        "uninstalled_at": "2022-07-26T22:47:49Z",
        "uninstalled_at_sfdc": "2022-07-26T22:47:49+00:00"
      },
      "Google Optimize": {
        "all_names": [
          "Google Optimize"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Optimize",
        "uninstalled_at": "2023-10-05T21:13:11Z",
        "uninstalled_at_sfdc": "2023-10-05T21:13:11+00:00"
      },
      "Google Pay": {
        "all_names": [
          "Google Pay"
        ],
        "installed_at": "2020-11-04T12:55:00Z",
        "installed_at_sfdc": "2020-11-04T12:55:00+00:00",
        "name": "Google Pay"
      },
      "Google Tag Manager": {
        "all_names": [
          "Google Tag Manager"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Google Tag Manager"
      },
      "Helium Customer Fields": {
        "all_names": [
          "Helium Customer Fields"
        ],
        "categories": [
          "accounts and login",
          "forms"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Helium Customer Fields",
        "platform": "shopify",
        "platform_install_rank": 341,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "Hotjar": {
        "all_names": [
          "Hotjar"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Hotjar",
        "uninstalled_at": "2025-11-19T18:24:43Z",
        "uninstalled_at_sfdc": "2025-11-19T18:24:43+00:00"
      },
      "Hulk Code": {
        "all_names": [
          "Hulk Code"
        ],
        "categories": [],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Hulk Code",
        "platform": "shopify",
        "platform_install_rank": 167
      },
      "Hulk Contact Form Builder": {
        "all_names": [
          "Hulk Contact Form Builder",
          "Hulk Form Builder"
        ],
        "categories": [
          "forms",
          "surveys"
        ],
        "installed_at": "2023-01-05T22:53:26Z",
        "installed_at_sfdc": "2023-01-05T22:53:26+00:00",
        "name": "Hulk Contact Form Builder",
        "platform": "shopify",
        "platform_install_rank": 83,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "Klaviyo": {
        "all_names": [
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Klaviyo",
        "shopify_app": {
          "all_names": [
            "Klaviyo: Email Marketing \u0026 SMS",
            "Klaviyo"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2023-09-13T20:40:31Z",
          "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
          "name": "Klaviyo: Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 2,
          "technology": "Klaviyo"
        }
      },
      "Loqate": {
        "all_names": [
          "Loqate"
        ],
        "categories": [
          "shipping solutions - other",
          "checkout - other"
        ],
        "installed_at": "2025-08-08T04:33:27Z",
        "installed_at_sfdc": "2025-08-08T04:33:27+00:00",
        "name": "Loqate",
        "shopify_app": {
          "all_names": [
            "Loqate Address Validation",
            "Loqate"
          ],
          "categories": [
            "shipping solutions - other",
            "checkout - other"
          ],
          "installed_at": "2025-08-08T04:33:27Z",
          "installed_at_sfdc": "2025-08-08T04:33:27+00:00",
          "name": "Loqate Address Validation",
          "platform": "shopify",
          "platform_install_rank": 1957,
          "technology": "Loqate"
        }
      },
      "Minmaxify Order Limits": {
        "all_names": [
          "Minmaxify Order Limits",
          "Order Limits ‑ MinMaxify"
        ],
        "categories": [
          "order limits"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Minmaxify Order Limits",
        "platform": "shopify",
        "platform_install_rank": 162
      },
      "Narvar": {
        "all_names": [
          "Narvar"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-09-20T16:18:16Z",
        "installed_at_sfdc": "2023-09-20T16:18:16+00:00",
        "name": "Narvar",
        "shopify_app": {
          "all_names": [
            "Narvar Return and Exchange",
            "Narvar"
          ],
          "categories": [
            "returns and exchanges"
          ],
          "installed_at": "2023-09-20T16:18:16Z",
          "installed_at_sfdc": "2023-09-20T16:18:16+00:00",
          "name": "Narvar Return and Exchange",
          "platform": "shopify",
          "platform_install_rank": 1464,
          "technology": "Narvar"
        }
      },
      "New Relic": {
        "all_names": [
          "New Relic"
        ],
        "installed_at": "2024-05-08T09:16:53Z",
        "installed_at_sfdc": "2024-05-08T09:16:53+00:00",
        "name": "New Relic",
        "uninstalled_at": "2024-06-04T17:31:33Z",
        "uninstalled_at_sfdc": "2024-06-04T17:31:33+00:00"
      },
      "OneTrust Cookie Consent": {
        "all_names": [
          "OneTrust Cookie Consent"
        ],
        "installed_at": "2025-03-31T18:19:10Z",
        "installed_at_sfdc": "2025-03-31T18:19:10+00:00",
        "name": "OneTrust Cookie Consent"
      },
      "Orderify ‑ Order Edit Cancel": {
        "all_names": [
          "Orderify ‑ Order Edit Cancel",
          "Orderify",
          "Order Edit Customer Service",
          "Orderify ‑ Self‑Service Edit"
        ],
        "categories": [
          "order editing",
          "helpdesk"
        ],
        "installed_at": "2022-07-04T04:02:06Z",
        "installed_at_sfdc": "2022-07-04T04:02:06+00:00",
        "name": "Orderify ‑ Order Edit Cancel",
        "platform": "shopify",
        "platform_install_rank": 823,
        "uninstalled_at": "2023-02-07T08:52:47Z",
        "uninstalled_at_sfdc": "2023-02-07T08:52:47+00:00"
      },
      "Outbrain": {
        "all_names": [
          "Outbrain"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Outbrain",
        "uninstalled_at": "2022-04-06T20:13:06Z",
        "uninstalled_at_sfdc": "2022-04-06T20:13:06+00:00"
      },
      "PayPal": {
        "all_names": [
          "PayPal"
        ],
        "installed_at": "2024-07-16T22:39:36Z",
        "installed_at_sfdc": "2024-07-16T22:39:36+00:00",
        "name": "PayPal",
        "uninstalled_at": "2024-10-04T04:27:14Z",
        "uninstalled_at_sfdc": "2024-10-04T04:27:14+00:00"
      },
      "PayPal Express Checkout": {
        "all_names": [
          "PayPal Express Checkout"
        ],
        "installed_at": "2022-02-14T23:05:39Z",
        "installed_at_sfdc": "2022-02-14T23:05:39+00:00",
        "name": "PayPal Express Checkout"
      },
      "Pinterest Pixel": {
        "all_names": [
          "Pinterest Pixel"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Pinterest Pixel"
      },
      "Product Reviews": {
        "all_names": [
          "Product Reviews"
        ],
        "categories": [
          "product reviews"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Product Reviews",
        "platform": "shopify",
        "platform_install_rank": 4,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "Qikify Mega Menu \u0026 Navigation": {
        "all_names": [
          "Qikify Mega Menu \u0026 Navigation",
          "qikify Mega Menu \u0026 Navigation"
        ],
        "categories": [
          "navigation and menus",
          "search and navigation - other"
        ],
        "installed_at": "2023-01-05T22:53:26Z",
        "installed_at_sfdc": "2023-01-05T22:53:26+00:00",
        "name": "Qikify Mega Menu \u0026 Navigation",
        "platform": "shopify",
        "platform_install_rank": 986,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "Rebolt Bundle \u0026 Upsell": {
        "all_names": [
          "Rebolt ‑ Bundle Product",
          "Rebolt Bundle \u0026 Upsell",
          "Rebolt Bundles Volume Discount",
          "Rebolt | Bundles \u0026 Upsells",
          "Rebolt ‑ Bundle Products"
        ],
        "categories": [
          "product bundles",
          "upsell and cross-sell"
        ],
        "installed_at": "2022-02-14T23:05:39Z",
        "installed_at_sfdc": "2022-02-14T23:05:39+00:00",
        "name": "Rebolt Bundle \u0026 Upsell",
        "platform": "shopify",
        "platform_install_rank": 2055,
        "uninstalled_at": "2023-10-05T21:13:11Z",
        "uninstalled_at_sfdc": "2023-10-05T21:13:11+00:00"
      },
      "Reddit Pixel": {
        "all_names": [
          "Reddit Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Reddit Pixel"
      },
      "ReferralCandy": {
        "all_names": [
          "ReferralCandy"
        ],
        "categories": [
          "affiliate programs",
          "loyalty and rewards"
        ],
        "installed_at": "2022-01-07T00:49:18Z",
        "installed_at_sfdc": "2022-01-07T00:49:18+00:00",
        "name": "ReferralCandy",
        "shopify_app": {
          "all_names": [
            "Referral Candy \u0026 Affiliate",
            "ReferralCandy"
          ],
          "categories": [
            "affiliate programs",
            "loyalty and rewards"
          ],
          "installed_at": "2022-01-07T00:49:18Z",
          "installed_at_sfdc": "2022-01-07T00:49:18+00:00",
          "name": "Referral Candy \u0026 Affiliate",
          "platform": "shopify",
          "platform_install_rank": 771,
          "technology": "ReferralCandy",
          "uninstalled_at": "2024-11-07T16:37:00Z",
          "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
        },
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Retention Science": {
        "all_names": [
          "Retention Science"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Retention Science",
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "Retention.com": {
        "all_names": [
          "Retention.com"
        ],
        "installed_at": "2025-11-12T11:39:56Z",
        "installed_at_sfdc": "2025-11-12T11:39:56+00:00",
        "name": "Retention.com"
      },
      "Returnly": {
        "all_names": [
          "Returnly"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-04-27T21:54:52Z",
        "installed_at_sfdc": "2023-04-27T21:54:52+00:00",
        "name": "Returnly",
        "shopify_app": {
          "all_names": [
            "Returnly by Affirm",
            "Returnly"
          ],
          "categories": [
            "returns and exchanges"
          ],
          "installed_at": "2023-04-27T21:54:52Z",
          "installed_at_sfdc": "2023-04-27T21:54:52+00:00",
          "name": "Returnly by Affirm",
          "platform": "shopify",
          "platform_install_rank": 1727,
          "technology": "Returnly",
          "uninstalled_at": "2023-09-20T16:18:16Z",
          "uninstalled_at_sfdc": "2023-09-20T16:18:16+00:00"
        },
        "uninstalled_at": "2023-09-20T16:18:16Z",
        "uninstalled_at_sfdc": "2023-09-20T16:18:16+00:00"
      },
      "Rise Gift Cards \u0026 Store Credit": {
        "all_names": [
          "Rise Gift Cards \u0026 Store Credit",
          "Rise.ai: Gift Cards \u0026 Loyalty",
          "Rise.ai ‑ Gift Cards \u0026 Loyalty",
          "Rise: Gift Cards \u0026 Loyalty "
        ],
        "categories": [
          "gift cards",
          "loyalty and rewards"
        ],
        "installed_at": "2022-10-28T14:03:03Z",
        "installed_at_sfdc": "2022-10-28T14:03:03+00:00",
        "name": "Rise Gift Cards \u0026 Store Credit",
        "platform": "shopify",
        "platform_install_rank": 344,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "Schema Plus for SEO \u0026 JSON‑LD": {
        "all_names": [
          "Schema Plus for SEO \u0026 JSON‑LD",
          "Schema Plus for SEO"
        ],
        "categories": [
          "seo",
          "advertising - other"
        ],
        "installed_at": "2023-12-27T11:30:14Z",
        "installed_at_sfdc": "2023-12-27T11:30:14+00:00",
        "name": "Schema Plus for SEO \u0026 JSON‑LD",
        "platform": "shopify",
        "platform_install_rank": 613
      },
      "Shogun": {
        "all_names": [
          "Shogun"
        ],
        "categories": [
          "page builder",
          "upsell and cross-sell"
        ],
        "installed_at": "2021-05-20T23:34:50Z",
        "installed_at_sfdc": "2021-05-20T23:34:50+00:00",
        "name": "Shogun",
        "shopify_app": {
          "all_names": [
            "Shogun ‑ Landing Page Builder",
            "Shogun"
          ],
          "categories": [
            "page builder",
            "upsell and cross-sell"
          ],
          "installed_at": "2021-05-20T23:34:50Z",
          "installed_at_sfdc": "2021-05-20T23:34:50+00:00",
          "name": "Shogun ‑ Landing Page Builder",
          "platform": "shopify",
          "platform_install_rank": 58,
          "technology": "Shogun",
          "uninstalled_at": "2025-06-07T08:42:43Z",
          "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
        },
        "uninstalled_at": "2025-06-07T08:42:43Z",
        "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
      },
      "Shop Pay": {
        "all_names": [
          "Shop Pay"
        ],
        "installed_at": "2021-01-02T00:51:15Z",
        "installed_at_sfdc": "2021-01-02T00:51:15+00:00",
        "name": "Shop Pay"
      },
      "Shopify Fulfillment Network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T21:39:16Z",
        "installed_at_sfdc": "2023-11-23T21:39:16+00:00",
        "name": "Shopify Fulfillment Network",
        "shopify_app": {
          "all_names": [
            "Shopify Fulfillment Network"
          ],
          "categories": [
            "outsourced fulfillment",
            "fulfilling orders - other"
          ],
          "installed_at": "2023-11-23T21:39:16Z",
          "installed_at_sfdc": "2023-11-23T21:39:16+00:00",
          "name": "Shopify Fulfillment Network",
          "platform": "shopify",
          "platform_install_rank": 2873,
          "technology": "Shopify Fulfillment Network",
          "uninstalled_at": "2023-12-13T18:57:59Z",
          "uninstalled_at_sfdc": "2023-12-13T18:57:59+00:00"
        },
        "uninstalled_at": "2023-12-13T18:57:59Z",
        "uninstalled_at_sfdc": "2023-12-13T18:57:59+00:00"
      },
      "Shopify Privacy \u0026 Compliance": {
        "all_names": [
          "Shopify Privacy \u0026 Compliance"
        ],
        "categories": [
          "privacy",
          "banners"
        ],
        "installed_at": "2024-06-18T15:39:55Z",
        "installed_at_sfdc": "2024-06-18T15:39:55+00:00",
        "name": "Shopify Privacy \u0026 Compliance",
        "platform": "shopify",
        "platform_install_rank": 187,
        "uninstalled_at": "2024-07-02T22:35:37Z",
        "uninstalled_at_sfdc": "2024-07-02T22:35:37+00:00"
      },
      "Shopify Promise": {
        "all_names": [
          "Shopify Promise"
        ],
        "installed_at": "2025-11-04T14:26:00Z",
        "installed_at_sfdc": "2025-11-04T14:26:00+00:00",
        "name": "Shopify Promise"
      },
      "Signifyd": {
        "all_names": [
          "Signifyd"
        ],
        "categories": [
          "fraud",
          "returns and warranty - other"
        ],
        "installed_at": "2023-03-30T17:54:39Z",
        "installed_at_sfdc": "2023-03-30T17:54:39+00:00",
        "name": "Signifyd",
        "shopify_app": {
          "all_names": [
            "Signifyd",
            "Signifyd‑Chargeback Protection"
          ],
          "categories": [
            "fraud",
            "returns and warranty - other"
          ],
          "installed_at": "2023-03-30T17:54:39Z",
          "installed_at_sfdc": "2023-03-30T17:54:39+00:00",
          "name": "Signifyd",
          "platform": "shopify",
          "platform_install_rank": 495,
          "technology": "Signifyd"
        }
      },
      "Snap Pixel": {
        "all_names": [
          "Snap Pixel"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Snap Pixel",
        "uninstalled_at": "2022-07-26T22:47:49Z",
        "uninstalled_at_sfdc": "2022-07-26T22:47:49+00:00"
      },
      "Steelhouse": {
        "all_names": [
          "Steelhouse"
        ],
        "installed_at": "2022-03-23T10:05:08Z",
        "installed_at_sfdc": "2022-03-23T10:05:08+00:00",
        "name": "Steelhouse"
      },
      "SwellRewards": {
        "all_names": [
          "SwellRewards"
        ],
        "categories": [
          "loyalty and rewards"
        ],
        "installed_at": "2024-06-11T18:20:59Z",
        "installed_at_sfdc": "2024-06-11T18:20:59+00:00",
        "name": "SwellRewards",
        "shopify_app": {
          "all_names": [
            "Yotpo: Loyalty Rewards Program",
            "Yotpo: Loyalty \u0026 Rewards",
            "Yotpo Loyalty Rewards Referral",
            "SwellRewards"
          ],
          "categories": [
            "loyalty and rewards"
          ],
          "installed_at": "2024-06-11T18:20:59Z",
          "installed_at_sfdc": "2024-06-11T18:20:59+00:00",
          "name": "Yotpo: Loyalty Rewards Program",
          "platform": "shopify",
          "platform_install_rank": 169,
          "technology": "SwellRewards",
          "uninstalled_at": "2024-11-07T16:37:00Z",
          "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
        },
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Taboola": {
        "all_names": [
          "Taboola"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Taboola",
        "uninstalled_at": "2022-04-06T20:13:06Z",
        "uninstalled_at_sfdc": "2022-04-06T20:13:06+00:00"
      },
      "Tapcart": {
        "all_names": [
          "Tapcart"
        ],
        "categories": [
          "mobile app builder"
        ],
        "installed_at": "2025-04-29T03:36:13Z",
        "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
        "name": "Tapcart",
        "shopify_app": {
          "all_names": [
            "Tapcart ‑ Mobile App Builder",
            "Tapcart"
          ],
          "categories": [
            "mobile app builder"
          ],
          "installed_at": "2025-04-29T03:36:13Z",
          "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
          "name": "Tapcart ‑ Mobile App Builder",
          "platform": "shopify",
          "platform_install_rank": 574,
          "technology": "Tapcart"
        }
      },
      "TikTok Pixel": {
        "all_names": [
          "TikTok Pixel"
        ],
        "installed_at": "2021-12-08T06:07:05Z",
        "installed_at_sfdc": "2021-12-08T06:07:05+00:00",
        "name": "TikTok Pixel"
      },
      "TurnTo": {
        "all_names": [
          "TurnTo"
        ],
        "installed_at": "2021-03-30T08:10:58Z",
        "installed_at_sfdc": "2021-03-30T08:10:58+00:00",
        "name": "TurnTo",
        "uninstalled_at": "2024-09-18T01:18:16Z",
        "uninstalled_at_sfdc": "2024-09-18T01:18:16+00:00"
      },
      "Twitter Pixel": {
        "all_names": [
          "Twitter Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Twitter Pixel",
        "uninstalled_at": "2023-02-07T08:52:47Z",
        "uninstalled_at_sfdc": "2023-02-07T08:52:47+00:00"
      },
      "Vimeo": {
        "all_names": [
          "Vimeo"
        ],
        "installed_at": "2023-11-15T21:51:18Z",
        "installed_at_sfdc": "2023-11-15T21:51:18+00:00",
        "name": "Vimeo"
      },
      "Voyage SMS": {
        "all_names": [
          "Voyage SMS"
        ],
        "installed_at": "2022-01-29T05:47:50Z",
        "installed_at_sfdc": "2022-01-29T05:47:50+00:00",
        "name": "Voyage SMS",
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "Yotpo": {
        "all_names": [
          "Yotpo"
        ],
        "installed_at": "2024-11-07T16:37:00Z",
        "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
        "name": "Yotpo"
      },
      "YouTube Player": {
        "all_names": [
          "YouTube Player"
        ],
        "installed_at": "2021-02-13T03:32:14Z",
        "installed_at_sfdc": "2021-02-13T03:32:14+00:00",
        "name": "YouTube Player",
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "reCAPTCHA": {
        "all_names": [
          "reCAPTCHA"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "reCAPTCHA",
        "uninstalled_at": "2023-11-23T21:39:16Z",
        "uninstalled_at_sfdc": "2023-11-23T21:39:16+00:00"
      },
      "shop my": {
        "all_names": [
          "shop my"
        ],
        "installed_at": "2025-04-29T03:36:13Z",
        "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
        "name": "shop my"
      }
    },
    "app_details": {
      "1.address-validator": {
        "all_names": [
          "Clearer.io Address Validator",
          "Address Validator Plus",
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2022-07-26T22:47:49Z",
        "installed_at_sfdc": "2022-07-26T22:47:49+00:00",
        "name": "Clearer.io Address Validator",
        "platform": "shopify",
        "platform_install_rank": 595,
        "technology": "Address Validator",
        "uninstalled_at": "2025-08-08T04:33:27Z",
        "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
      },
      "1.algolia-search": {
        "all_names": [
          "Algolia AI Search \u0026 Discovery",
          "Algolia"
        ],
        "categories": [
          "search and filters",
          "upsell and cross-sell"
        ],
        "installed_at": "2024-11-07T16:37:00Z",
        "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
        "name": "Algolia AI Search \u0026 Discovery",
        "platform": "shopify",
        "platform_install_rank": 653,
        "technology": "Algolia"
      },
      "1.attentive": {
        "all_names": [
          "Attentive: SMS + MMS Marketing",
          "Attentive: AI‑led Email \u0026SMS",
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2025-07-09T08:15:51Z",
        "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
        "name": "Attentive: AI‑led Email \u0026SMS",
        "platform": "shopify",
        "platform_install_rank": 239,
        "technology": "Attentive"
      },
      "1.avantlink-tracking-1": {
        "all_names": [
          "AvantLink Affiliate Marketing",
          "AvantLink Tracking"
        ],
        "categories": [
          "affiliate programs"
        ],
        "installed_at": "2024-12-14T02:34:29Z",
        "installed_at_sfdc": "2024-12-14T02:34:29+00:00",
        "name": "AvantLink Affiliate Marketing",
        "platform": "shopify",
        "platform_install_rank": 718
      },
      "1.awin-advertiser-tracking": {
        "all_names": [
          "Awin ‑ Affiliate Marketing",
          "AWIN"
        ],
        "categories": [
          "affiliate programs",
          "advertising - other"
        ],
        "installed_at": "2023-04-20T21:33:24Z",
        "installed_at_sfdc": "2023-04-20T21:33:24+00:00",
        "name": "Awin ‑ Affiliate Marketing",
        "platform": "shopify",
        "platform_install_rank": 185,
        "technology": "AWIN",
        "uninstalled_at": "2023-07-06T22:45:34Z",
        "uninstalled_at_sfdc": "2023-07-06T22:45:34+00:00"
      },
      "1.bazaarvoice-reviews-photos-social": {
        "all_names": [
          "Bazaarvoice Reviews \u0026 Photos",
          "Baazarvoice"
        ],
        "categories": [
          "product reviews",
          "social trust - other"
        ],
        "installed_at": "2024-08-20T21:15:01Z",
        "installed_at_sfdc": "2024-08-20T21:15:01+00:00",
        "name": "Bazaarvoice Reviews \u0026 Photos",
        "platform": "shopify",
        "platform_install_rank": 525,
        "technology": "Baazarvoice"
      },
      "1.bundle-products-by-thimatic": {
        "all_names": [
          "Rebolt ‑ Bundle Product",
          "Rebolt Bundle \u0026 Upsell",
          "Rebolt Bundles Volume Discount",
          "Rebolt | Bundles \u0026 Upsells",
          "Rebolt ‑ Bundle Products"
        ],
        "categories": [
          "product bundles",
          "upsell and cross-sell"
        ],
        "installed_at": "2022-02-14T23:05:39Z",
        "installed_at_sfdc": "2022-02-14T23:05:39+00:00",
        "name": "Rebolt Bundle \u0026 Upsell",
        "platform": "shopify",
        "platform_install_rank": 2055,
        "uninstalled_at": "2023-10-05T21:13:11Z",
        "uninstalled_at_sfdc": "2023-10-05T21:13:11+00:00"
      },
      "1.checkmate-1": {
        "all_names": [
          "Checkmate",
          "Checked"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2025-06-30T23:56:26Z",
        "installed_at_sfdc": "2025-06-30T23:56:26+00:00",
        "name": "Checkmate",
        "platform": "shopify",
        "platform_install_rank": 1589,
        "uninstalled_at": "2025-07-09T08:15:51Z",
        "uninstalled_at_sfdc": "2025-07-09T08:15:51+00:00"
      },
      "1.customer-privacy-banner": {
        "all_names": [
          "Shopify Privacy \u0026 Compliance"
        ],
        "categories": [
          "privacy",
          "banners"
        ],
        "installed_at": "2024-06-18T15:39:55Z",
        "installed_at_sfdc": "2024-06-18T15:39:55+00:00",
        "name": "Shopify Privacy \u0026 Compliance",
        "platform": "shopify",
        "platform_install_rank": 187,
        "uninstalled_at": "2024-07-02T22:35:37Z",
        "uninstalled_at_sfdc": "2024-07-02T22:35:37+00:00"
      },
      "1.customr": {
        "all_names": [
          "Helium Customer Fields"
        ],
        "categories": [
          "accounts and login",
          "forms"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Helium Customer Fields",
        "platform": "shopify",
        "platform_install_rank": 341,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "1.disco": {
        "all_names": [
          "Disco Post Purchase Ad Network",
          "Disco Post Purchase Ads",
          "co‑op Upsell and Cross‑promote"
        ],
        "categories": [
          "ads",
          "promotions - other"
        ],
        "installed_at": "2025-10-08T09:37:50Z",
        "installed_at_sfdc": "2025-10-08T09:37:50+00:00",
        "name": "Disco Post Purchase Ad Network",
        "platform": "shopify",
        "platform_install_rank": 1928
      },
      "1.easylocation": {
        "all_names": [
          "Geolocation Redirects Geo:Pro",
          "Geo:Pro Geolocation Redirects"
        ],
        "categories": [
          "geolocation",
          "internationalization - other"
        ],
        "installed_at": "2023-08-03T20:29:45Z",
        "installed_at_sfdc": "2023-08-03T20:29:45+00:00",
        "name": "Geolocation Redirects Geo:Pro",
        "platform": "shopify",
        "platform_install_rank": 326
      },
      "1.essential-order-value-booster": {
        "all_names": [
          "Essential Free Shipping Upsell"
        ],
        "categories": [
          "cart customization",
          "upsell and cross-sell"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Essential Free Shipping Upsell",
        "platform": "shopify",
        "platform_install_rank": 189,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "1.form-builder-by-hulkapps": {
        "all_names": [
          "Hulk Contact Form Builder",
          "Hulk Form Builder"
        ],
        "categories": [
          "forms",
          "surveys"
        ],
        "installed_at": "2023-01-05T22:53:26Z",
        "installed_at_sfdc": "2023-01-05T22:53:26+00:00",
        "name": "Hulk Contact Form Builder",
        "platform": "shopify",
        "platform_install_rank": 83,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "1.foursixty": {
        "all_names": [
          "Foursixty Shoppable Social UGC"
        ],
        "categories": [
          "social proof",
          "image gallery"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Foursixty Shoppable Social UGC",
        "platform": "shopify",
        "platform_install_rank": 711,
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "1.generic-hulkapps": {
        "all_names": [
          "Hulk Code"
        ],
        "categories": [],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Hulk Code",
        "platform": "shopify",
        "platform_install_rank": 167
      },
      "1.gift-card-loyalty-program": {
        "all_names": [
          "Rise Gift Cards \u0026 Store Credit",
          "Rise.ai: Gift Cards \u0026 Loyalty",
          "Rise.ai ‑ Gift Cards \u0026 Loyalty",
          "Rise: Gift Cards \u0026 Loyalty "
        ],
        "categories": [
          "gift cards",
          "loyalty and rewards"
        ],
        "installed_at": "2022-10-28T14:03:03Z",
        "installed_at_sfdc": "2022-10-28T14:03:03+00:00",
        "name": "Rise Gift Cards \u0026 Store Credit",
        "platform": "shopify",
        "platform_install_rank": 344,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "1.govx-id": {
        "all_names": [
          "GOVX ID Exclusive Discounts"
        ],
        "categories": [
          "discounts"
        ],
        "installed_at": "2024-04-23T06:02:43Z",
        "installed_at_sfdc": "2024-04-23T06:02:43+00:00",
        "name": "GOVX ID Exclusive Discounts",
        "platform": "shopify",
        "platform_install_rank": 330
      },
      "1.gtm-datalayer-by-elevar": {
        "all_names": [
          "Elevar Conversion Tracking"
        ],
        "categories": [
          "ads",
          "analytics"
        ],
        "installed_at": "2025-07-09T08:15:51Z",
        "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
        "name": "Elevar Conversion Tracking",
        "platform": "shopify",
        "platform_install_rank": 228
      },
      "1.klaviyo-email-marketing": {
        "all_names": [
          "Klaviyo: Email Marketing \u0026 SMS",
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Klaviyo: Email Marketing \u0026 SMS",
        "platform": "shopify",
        "platform_install_rank": 2,
        "technology": "Klaviyo"
      },
      "1.loqate": {
        "all_names": [
          "Loqate Address Validation",
          "Loqate"
        ],
        "categories": [
          "shipping solutions - other",
          "checkout - other"
        ],
        "installed_at": "2025-08-08T04:33:27Z",
        "installed_at_sfdc": "2025-08-08T04:33:27+00:00",
        "name": "Loqate Address Validation",
        "platform": "shopify",
        "platform_install_rank": 1957,
        "technology": "Loqate"
      },
      "1.narvar-returns": {
        "all_names": [
          "Narvar Return and Exchange",
          "Narvar"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-09-20T16:18:16Z",
        "installed_at_sfdc": "2023-09-20T16:18:16+00:00",
        "name": "Narvar Return and Exchange",
        "platform": "shopify",
        "platform_install_rank": 1464,
        "technology": "Narvar"
      },
      "1.order-limits-minmaxify": {
        "all_names": [
          "Minmaxify Order Limits",
          "Order Limits ‑ MinMaxify"
        ],
        "categories": [
          "order limits"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Minmaxify Order Limits",
        "platform": "shopify",
        "platform_install_rank": 162
      },
      "1.orderify": {
        "all_names": [
          "Orderify ‑ Order Edit Cancel",
          "Orderify",
          "Order Edit Customer Service",
          "Orderify ‑ Self‑Service Edit"
        ],
        "categories": [
          "order editing",
          "helpdesk"
        ],
        "installed_at": "2022-07-04T04:02:06Z",
        "installed_at_sfdc": "2022-07-04T04:02:06+00:00",
        "name": "Orderify ‑ Order Edit Cancel",
        "platform": "shopify",
        "platform_install_rank": 823,
        "uninstalled_at": "2023-02-07T08:52:47Z",
        "uninstalled_at_sfdc": "2023-02-07T08:52:47+00:00"
      },
      "1.product-ads-by-criteo": {
        "all_names": [
          "Criteo Sales Growth Ads",
          "Criteo"
        ],
        "categories": [
          "ads"
        ],
        "installed_at": "2025-02-19T12:57:20Z",
        "installed_at_sfdc": "2025-02-19T12:57:20+00:00",
        "name": "Criteo Sales Growth Ads",
        "platform": "shopify",
        "platform_install_rank": 323,
        "technology": "Criteo"
      },
      "1.product-reviews": {
        "all_names": [
          "Product Reviews"
        ],
        "categories": [
          "product reviews"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Product Reviews",
        "platform": "shopify",
        "platform_install_rank": 4,
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "1.referralcandy": {
        "all_names": [
          "Referral Candy \u0026 Affiliate",
          "ReferralCandy"
        ],
        "categories": [
          "affiliate programs",
          "loyalty and rewards"
        ],
        "installed_at": "2022-01-07T00:49:18Z",
        "installed_at_sfdc": "2022-01-07T00:49:18+00:00",
        "name": "Referral Candy \u0026 Affiliate",
        "platform": "shopify",
        "platform_install_rank": 771,
        "technology": "ReferralCandy",
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "1.returnly": {
        "all_names": [
          "Returnly by Affirm",
          "Returnly"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-04-27T21:54:52Z",
        "installed_at_sfdc": "2023-04-27T21:54:52+00:00",
        "name": "Returnly by Affirm",
        "platform": "shopify",
        "platform_install_rank": 1727,
        "technology": "Returnly",
        "uninstalled_at": "2023-09-20T16:18:16Z",
        "uninstalled_at_sfdc": "2023-09-20T16:18:16+00:00"
      },
      "1.schema-plus": {
        "all_names": [
          "Schema Plus for SEO \u0026 JSON‑LD",
          "Schema Plus for SEO"
        ],
        "categories": [
          "seo",
          "advertising - other"
        ],
        "installed_at": "2023-12-27T11:30:14Z",
        "installed_at_sfdc": "2023-12-27T11:30:14+00:00",
        "name": "Schema Plus for SEO \u0026 JSON‑LD",
        "platform": "shopify",
        "platform_install_rank": 613
      },
      "1.shogun": {
        "all_names": [
          "Shogun ‑ Landing Page Builder",
          "Shogun"
        ],
        "categories": [
          "page builder",
          "upsell and cross-sell"
        ],
        "installed_at": "2021-05-20T23:34:50Z",
        "installed_at_sfdc": "2021-05-20T23:34:50+00:00",
        "name": "Shogun ‑ Landing Page Builder",
        "platform": "shopify",
        "platform_install_rank": 58,
        "technology": "Shogun",
        "uninstalled_at": "2025-06-07T08:42:43Z",
        "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
      },
      "1.shopify-fulfillment-network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T21:39:16Z",
        "installed_at_sfdc": "2023-11-23T21:39:16+00:00",
        "name": "Shopify Fulfillment Network",
        "platform": "shopify",
        "platform_install_rank": 2873,
        "technology": "Shopify Fulfillment Network",
        "uninstalled_at": "2023-12-13T18:57:59Z",
        "uninstalled_at_sfdc": "2023-12-13T18:57:59+00:00"
      },
      "1.shopify-mobile-apps": {
        "all_names": [
          "Tapcart ‑ Mobile App Builder",
          "Tapcart"
        ],
        "categories": [
          "mobile app builder"
        ],
        "installed_at": "2025-04-29T03:36:13Z",
        "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
        "name": "Tapcart ‑ Mobile App Builder",
        "platform": "shopify",
        "platform_install_rank": 574,
        "technology": "Tapcart"
      },
      "1.signifyd": {
        "all_names": [
          "Signifyd",
          "Signifyd‑Chargeback Protection"
        ],
        "categories": [
          "fraud",
          "returns and warranty - other"
        ],
        "installed_at": "2023-03-30T17:54:39Z",
        "installed_at_sfdc": "2023-03-30T17:54:39+00:00",
        "name": "Signifyd",
        "platform": "shopify",
        "platform_install_rank": 495,
        "technology": "Signifyd"
      },
      "1.smart-menu": {
        "all_names": [
          "Qikify Mega Menu \u0026 Navigation",
          "qikify Mega Menu \u0026 Navigation"
        ],
        "categories": [
          "navigation and menus",
          "search and navigation - other"
        ],
        "installed_at": "2023-01-05T22:53:26Z",
        "installed_at_sfdc": "2023-01-05T22:53:26+00:00",
        "name": "Qikify Mega Menu \u0026 Navigation",
        "platform": "shopify",
        "platform_install_rank": 986,
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "1.swell": {
        "all_names": [
          "Yotpo: Loyalty Rewards Program",
          "Yotpo: Loyalty \u0026 Rewards",
          "Yotpo Loyalty Rewards Referral",
          "SwellRewards"
        ],
        "categories": [
          "loyalty and rewards"
        ],
        "installed_at": "2024-06-11T18:20:59Z",
        "installed_at_sfdc": "2024-06-11T18:20:59+00:00",
        "name": "Yotpo: Loyalty Rewards Program",
        "platform": "shopify",
        "platform_install_rank": 169,
        "technology": "SwellRewards",
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      }
    },
    "avg_price": 3977,
    "avg_price_usd": 3977,
    "avg_weight": 673,
    "brand_advocate_page_url": "https://www.stanley1913.com/pages/affiliate-program",
    "brands_page_url": "",
    "categories": [
      "/Home \u0026 Garden/Kitchen \u0026 Dining/Cookware \u0026 Diningware",
      "/Food \u0026 Drink"
    ],
    "city": "Seattle",
    "cluster_domains": [
      "www.stanley1913.com",
      "www.stanley1913.com.br",
      "stanley1913.mx",
      "www.stanley1913.cl",
      "www.stanley1913.ar",
      "stanley1913.co",
      "stanley1913.bo",
      "www.stanley1913.pe",
      "stanley1913.ae",
      "stanley1913.uy",
      "stanley1913.ec",
      "stanley1913.com.py",
      "stanley1913.com.ve",
      "stanley1913.gt",
      "www.stanley1913.cr",
      "stanley1913.com.vn",
      "www.stanley1913.us.com",
      "stanley1913.kz",
      "eu.stanley1913.com",
      "ca.stanley1913.com",
      "uk.stanley1913.com",
      "jp.stanley1913.com",
      "au.stanley1913.com",
      "tr.stanley1913.com",
      "nz.stanley1913.com",
      "kr.stanley1913.com",
      "id.stanley1913.com",
      "tw.stanley1913.com",
      "th.stanley1913.com"
    ],
    "combined_followers": 1619400,
    "contact_info": [
      {
        "followers": 1600000,
        "type": "tiktok",
        "url": "https://www.tiktok.com/@stanleybrand",
        "value": "@stanleybrand"
      },
      {
        "type": "phone",
        "value": "+1 206-557-6270"
      },
      {
        "followers": 0,
        "type": "facebook",
        "url": "https://www.facebook.com/StanleyBrand",
        "value": "stanleybrand"
      },
      {
        "followers": 0,
        "type": "instagram",
        "url": "https://www.instagram.com/stanley_brand",
        "value": "stanley_brand"
      },
      {
        "followers": 19400,
        "type": "youtube",
        "url": "https://www.youtube.com/user/StanleyBottle",
        "value": "stanleybottle"
      }
    ],
    "contact_page_url": "https://www.stanley1913.com/pages/contact-help-support",
    "copyright": "PMI WW Brands",
    "country_code": "US",
    "currency_code": "USD",
    "estimated_page_views": 65712376,
    "estimated_sales": 6760220686,
    "estimated_visits": 17760101,
    "faq_page_url": "https://www.stanley1913.com/pages/faq",
    "features": [
      "FAQ Page",
      "Brand Advocate Page",
      "Shopify Online Store 2.0",
      "New Shopify Checkout (2022)",
      "Accepts Gift Cards",
      "Contact Page",
      "Tracking or Returns",
      "Tracking Page",
      "Store Locator Page",
      "Warranty Page",
      "Has Blog"
    ],
    "financing_page_url": "",
    "id": 30182044,
    "klaviyo_features": [
      "Click-to-Text Form",
      "Email Collection",
      "Phone Collection",
      "Back In Stock"
    ],
    "language_code": "en",
    "localization_count": 0,
    "localizations": null,
    "max_price": 35000,
    "merchant_name": "Stanley 1913",
    "min_price": 600,
    "name": "www.stanley1913.com",
    "pinterest_followers": 0,
    "plan": "Shopify Plus",
    "platform": "shopify",
    "platform_rank": 3,
    "postal_code": "",
    "product_count": 321,
    "products_created_30": 8,
    "products_created_365": 125,
    "products_created_90": 36,
    "rank": 203,
    "retailer_page_url": "",
    "returns_page_url": "",
    "shopify_app_names": [
      "Algolia AI Search \u0026 Discovery",
      "Attentive: AI‑led Email \u0026SMS",
      "AvantLink Affiliate Marketing",
      "Bazaarvoice Reviews \u0026 Photos",
      "Disco Post Purchase Ad Network",
      "Geolocation Redirects Geo:Pro",
      "Hulk Code",
      "GOVX ID Exclusive Discounts",
      "Elevar Conversion Tracking",
      "Klaviyo: Email Marketing \u0026 SMS",
      "Loqate Address Validation",
      "Narvar Return and Exchange",
      "Minmaxify Order Limits",
      "Criteo Sales Growth Ads",
      "Schema Plus for SEO \u0026 JSON‑LD",
      "Tapcart ‑ Mobile App Builder",
      "Signifyd"
    ],
    "shopify_app_tokens": [
      "algolia-search",
      "attentive",
      "avantlink-tracking-1",
      "bazaarvoice-reviews-photos-social",
      "disco",
      "easylocation",
      "generic-hulkapps",
      "govx-id",
      "gtm-datalayer-by-elevar",
      "klaviyo-email-marketing",
      "loqate",
      "narvar-returns",
      "order-limits-minmaxify",
      "product-ads-by-criteo",
      "schema-plus",
      "shopify-mobile-apps",
      "signifyd"
    ],
    "state": "Active",
    "store_locator_page_url": "https://www.stanley1913.com/pages/store-locator",
    "technologies": [
      "AddShoppers",
      "Algolia",
      "Apple Pay",
      "Arrive",
      "Attentive",
      "AvantLink",
      "Baazarvoice",
      "Billy Grace",
      "Bing Ads",
      "Cloudflare",
      "Cloudflare CDN",
      "Contentsquare",
      "Criteo",
      "Curalate",
      "Facebook Pixel",
      "Google Ads Pixel",
      "Google Adsense",
      "Google Pay",
      "Google Tag Manager",
      "Klaviyo",
      "Loqate",
      "Narvar",
      "OneTrust Cookie Consent",
      "PayPal Express Checkout",
      "Pinterest Pixel",
      "Reddit Pixel",
      "Retention.com",
      "Shop Pay",
      "Shopify Promise",
      "Signifyd",
      "Steelhouse",
      "Tapcart",
      "TikTok Pixel",
      "Vimeo",
      "Yotpo",
      "shop my"
    ],
    "technology_details": {
      "AddShoppers": {
        "all_names": [
          "AddShoppers"
        ],
        "installed_at": "2025-01-09T17:48:48Z",
        "installed_at_sfdc": "2025-01-09T17:48:48+00:00",
        "name": "AddShoppers"
      },
      "Address Validator": {
        "all_names": [
          "Address Validator"
        ],
        "categories": [
          "shipping",
          "shipping solutions - other"
        ],
        "installed_at": "2023-06-22T19:17:31Z",
        "installed_at_sfdc": "2023-06-22T19:17:31+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": "2022-07-26T22:47:49Z",
          "installed_at_sfdc": "2022-07-26T22:47:49+00:00",
          "name": "Clearer.io Address Validator",
          "platform": "shopify",
          "platform_install_rank": 595,
          "technology": "Address Validator",
          "uninstalled_at": "2025-08-08T04:33:27Z",
          "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
        },
        "uninstalled_at": "2025-08-08T04:33:27Z",
        "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
      },
      "Algolia": {
        "all_names": [
          "Algolia"
        ],
        "categories": [
          "search and filters",
          "upsell and cross-sell"
        ],
        "installed_at": "2024-11-07T16:37:00Z",
        "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
        "name": "Algolia",
        "shopify_app": {
          "all_names": [
            "Algolia AI Search \u0026 Discovery",
            "Algolia"
          ],
          "categories": [
            "search and filters",
            "upsell and cross-sell"
          ],
          "installed_at": "2024-11-07T16:37:00Z",
          "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
          "name": "Algolia AI Search \u0026 Discovery",
          "platform": "shopify",
          "platform_install_rank": 653,
          "technology": "Algolia"
        }
      },
      "Amazon Pay": {
        "all_names": [
          "Amazon Pay"
        ],
        "installed_at": "2022-01-29T12:29:55Z",
        "installed_at_sfdc": "2022-01-29T12:29:55+00:00",
        "name": "Amazon Pay",
        "uninstalled_at": "2024-03-13T07:35:38Z",
        "uninstalled_at_sfdc": "2024-03-13T07:35:38+00:00"
      },
      "Apple Pay": {
        "all_names": [
          "Apple Pay"
        ],
        "installed_at": "2020-11-10T20:02:34Z",
        "installed_at_sfdc": "2020-11-10T20:02:34+00:00",
        "name": "Apple Pay"
      },
      "Arrive": {
        "all_names": [
          "Arrive"
        ],
        "installed_at": "2024-02-16T02:20:22Z",
        "installed_at_sfdc": "2024-02-16T02:20:22+00:00",
        "name": "Arrive"
      },
      "Attentive": {
        "all_names": [
          "Attentive"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2025-07-09T08:15:51Z",
        "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
        "name": "Attentive",
        "shopify_app": {
          "all_names": [
            "Attentive: SMS + MMS Marketing",
            "Attentive: AI‑led Email \u0026SMS",
            "Attentive"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2025-07-09T08:15:51Z",
          "installed_at_sfdc": "2025-07-09T08:15:51+00:00",
          "name": "Attentive: AI‑led Email \u0026SMS",
          "platform": "shopify",
          "platform_install_rank": 239,
          "technology": "Attentive"
        }
      },
      "AvantLink": {
        "all_names": [
          "AvantLink"
        ],
        "installed_at": "2021-09-14T23:21:03Z",
        "installed_at_sfdc": "2021-09-14T23:21:03+00:00",
        "name": "AvantLink"
      },
      "Baazarvoice": {
        "all_names": [
          "Baazarvoice"
        ],
        "categories": [
          "product reviews",
          "social trust - other"
        ],
        "installed_at": "2024-08-20T21:15:01Z",
        "installed_at_sfdc": "2024-08-20T21:15:01+00:00",
        "name": "Baazarvoice",
        "shopify_app": {
          "all_names": [
            "Bazaarvoice Reviews \u0026 Photos",
            "Baazarvoice"
          ],
          "categories": [
            "product reviews",
            "social trust - other"
          ],
          "installed_at": "2024-08-20T21:15:01Z",
          "installed_at_sfdc": "2024-08-20T21:15:01+00:00",
          "name": "Bazaarvoice Reviews \u0026 Photos",
          "platform": "shopify",
          "platform_install_rank": 525,
          "technology": "Baazarvoice"
        }
      },
      "Billy Grace": {
        "all_names": [
          "Billy Grace"
        ],
        "installed_at": "2024-09-18T01:18:16Z",
        "installed_at_sfdc": "2024-09-18T01:18:16+00:00",
        "name": "Billy Grace"
      },
      "Bing Ads": {
        "all_names": [
          "Bing Ads"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Bing Ads"
      },
      "Cloudflare": {
        "all_names": [
          "Cloudflare"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Cloudflare"
      },
      "Cloudflare CDN": {
        "all_names": [
          "Cloudflare CDN"
        ],
        "installed_at": "2021-06-08T15:55:16Z",
        "installed_at_sfdc": "2021-06-08T15:55:16+00:00",
        "name": "Cloudflare CDN"
      },
      "Contentsquare": {
        "all_names": [
          "Contentsquare"
        ],
        "installed_at": "2025-03-17T21:23:39Z",
        "installed_at_sfdc": "2025-03-17T21:23:39+00:00",
        "name": "Contentsquare"
      },
      "Convert": {
        "all_names": [
          "Convert"
        ],
        "installed_at": "2024-07-23T06:48:46Z",
        "installed_at_sfdc": "2024-07-23T06:48:46+00:00",
        "name": "Convert",
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Cookiebot": {
        "all_names": [
          "Cookiebot"
        ],
        "installed_at": "2023-10-31T23:55:36Z",
        "installed_at_sfdc": "2023-10-31T23:55:36+00:00",
        "name": "Cookiebot",
        "uninstalled_at": "2024-06-18T15:39:55Z",
        "uninstalled_at_sfdc": "2024-06-18T15:39:55+00:00"
      },
      "Criteo": {
        "all_names": [
          "Criteo"
        ],
        "categories": [
          "ads"
        ],
        "installed_at": "2020-09-29T17:58:04Z",
        "installed_at_sfdc": "2020-09-29T17:58:04+00:00",
        "name": "Criteo",
        "shopify_app": {
          "all_names": [
            "Criteo Sales Growth Ads",
            "Criteo"
          ],
          "categories": [
            "ads"
          ],
          "installed_at": "2025-02-19T12:57:20Z",
          "installed_at_sfdc": "2025-02-19T12:57:20+00:00",
          "name": "Criteo Sales Growth Ads",
          "platform": "shopify",
          "platform_install_rank": 323,
          "technology": "Criteo"
        }
      },
      "Curalate": {
        "all_names": [
          "Curalate"
        ],
        "installed_at": "2025-04-07T21:59:00Z",
        "installed_at_sfdc": "2025-04-07T21:59:00+00:00",
        "name": "Curalate"
      },
      "Facebook Pixel": {
        "all_names": [
          "Facebook Pixel"
        ],
        "installed_at": "2020-09-16T16:22:36Z",
        "installed_at_sfdc": "2020-09-16T16:22:36+00:00",
        "name": "Facebook Pixel"
      },
      "Freshchat": {
        "all_names": [
          "Freshchat"
        ],
        "installed_at": "2022-07-04T04:02:06Z",
        "installed_at_sfdc": "2022-07-04T04:02:06+00:00",
        "name": "Freshchat",
        "uninstalled_at": "2025-06-07T08:42:43Z",
        "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
      },
      "Freshdesk": {
        "all_names": [
          "Freshdesk"
        ],
        "installed_at": "2021-10-08T21:51:38Z",
        "installed_at_sfdc": "2021-10-08T21:51:38+00:00",
        "name": "Freshdesk",
        "uninstalled_at": "2025-08-08T04:33:27Z",
        "uninstalled_at_sfdc": "2025-08-08T04:33:27+00:00"
      },
      "Google Ads Pixel": {
        "all_names": [
          "Google Ads Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Ads Pixel"
      },
      "Google Adsense": {
        "all_names": [
          "Google Adsense"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Adsense"
      },
      "Google Analytics": {
        "all_names": [
          "Google Analytics"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Analytics",
        "uninstalled_at": "2023-07-06T22:45:34Z",
        "uninstalled_at_sfdc": "2023-07-06T22:45:34+00:00"
      },
      "Google Analytics Enhanced Ecommerce": {
        "all_names": [
          "Google Analytics Enhanced Ecommerce"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Google Analytics Enhanced Ecommerce",
        "uninstalled_at": "2022-07-26T22:47:49Z",
        "uninstalled_at_sfdc": "2022-07-26T22:47:49+00:00"
      },
      "Google Optimize": {
        "all_names": [
          "Google Optimize"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Google Optimize",
        "uninstalled_at": "2023-10-05T21:13:11Z",
        "uninstalled_at_sfdc": "2023-10-05T21:13:11+00:00"
      },
      "Google Pay": {
        "all_names": [
          "Google Pay"
        ],
        "installed_at": "2020-11-04T12:55:00Z",
        "installed_at_sfdc": "2020-11-04T12:55:00+00:00",
        "name": "Google Pay"
      },
      "Google Tag Manager": {
        "all_names": [
          "Google Tag Manager"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "Google Tag Manager"
      },
      "Hotjar": {
        "all_names": [
          "Hotjar"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Hotjar",
        "uninstalled_at": "2025-11-19T18:24:43Z",
        "uninstalled_at_sfdc": "2025-11-19T18:24:43+00:00"
      },
      "Klaviyo": {
        "all_names": [
          "Klaviyo"
        ],
        "categories": [
          "email marketing",
          "sms marketing"
        ],
        "installed_at": "2023-09-13T20:40:31Z",
        "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
        "name": "Klaviyo",
        "shopify_app": {
          "all_names": [
            "Klaviyo: Email Marketing \u0026 SMS",
            "Klaviyo"
          ],
          "categories": [
            "email marketing",
            "sms marketing"
          ],
          "installed_at": "2023-09-13T20:40:31Z",
          "installed_at_sfdc": "2023-09-13T20:40:31+00:00",
          "name": "Klaviyo: Email Marketing \u0026 SMS",
          "platform": "shopify",
          "platform_install_rank": 2,
          "technology": "Klaviyo"
        }
      },
      "Loqate": {
        "all_names": [
          "Loqate"
        ],
        "categories": [
          "shipping solutions - other",
          "checkout - other"
        ],
        "installed_at": "2025-08-08T04:33:27Z",
        "installed_at_sfdc": "2025-08-08T04:33:27+00:00",
        "name": "Loqate",
        "shopify_app": {
          "all_names": [
            "Loqate Address Validation",
            "Loqate"
          ],
          "categories": [
            "shipping solutions - other",
            "checkout - other"
          ],
          "installed_at": "2025-08-08T04:33:27Z",
          "installed_at_sfdc": "2025-08-08T04:33:27+00:00",
          "name": "Loqate Address Validation",
          "platform": "shopify",
          "platform_install_rank": 1957,
          "technology": "Loqate"
        }
      },
      "Narvar": {
        "all_names": [
          "Narvar"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-09-20T16:18:16Z",
        "installed_at_sfdc": "2023-09-20T16:18:16+00:00",
        "name": "Narvar",
        "shopify_app": {
          "all_names": [
            "Narvar Return and Exchange",
            "Narvar"
          ],
          "categories": [
            "returns and exchanges"
          ],
          "installed_at": "2023-09-20T16:18:16Z",
          "installed_at_sfdc": "2023-09-20T16:18:16+00:00",
          "name": "Narvar Return and Exchange",
          "platform": "shopify",
          "platform_install_rank": 1464,
          "technology": "Narvar"
        }
      },
      "New Relic": {
        "all_names": [
          "New Relic"
        ],
        "installed_at": "2024-05-08T09:16:53Z",
        "installed_at_sfdc": "2024-05-08T09:16:53+00:00",
        "name": "New Relic",
        "uninstalled_at": "2024-06-04T17:31:33Z",
        "uninstalled_at_sfdc": "2024-06-04T17:31:33+00:00"
      },
      "OneTrust Cookie Consent": {
        "all_names": [
          "OneTrust Cookie Consent"
        ],
        "installed_at": "2025-03-31T18:19:10Z",
        "installed_at_sfdc": "2025-03-31T18:19:10+00:00",
        "name": "OneTrust Cookie Consent"
      },
      "Outbrain": {
        "all_names": [
          "Outbrain"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Outbrain",
        "uninstalled_at": "2022-04-06T20:13:06Z",
        "uninstalled_at_sfdc": "2022-04-06T20:13:06+00:00"
      },
      "PayPal": {
        "all_names": [
          "PayPal"
        ],
        "installed_at": "2024-07-16T22:39:36Z",
        "installed_at_sfdc": "2024-07-16T22:39:36+00:00",
        "name": "PayPal",
        "uninstalled_at": "2024-10-04T04:27:14Z",
        "uninstalled_at_sfdc": "2024-10-04T04:27:14+00:00"
      },
      "PayPal Express Checkout": {
        "all_names": [
          "PayPal Express Checkout"
        ],
        "installed_at": "2022-02-14T23:05:39Z",
        "installed_at_sfdc": "2022-02-14T23:05:39+00:00",
        "name": "PayPal Express Checkout"
      },
      "Pinterest Pixel": {
        "all_names": [
          "Pinterest Pixel"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Pinterest Pixel"
      },
      "Reddit Pixel": {
        "all_names": [
          "Reddit Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Reddit Pixel"
      },
      "ReferralCandy": {
        "all_names": [
          "ReferralCandy"
        ],
        "categories": [
          "affiliate programs",
          "loyalty and rewards"
        ],
        "installed_at": "2022-01-07T00:49:18Z",
        "installed_at_sfdc": "2022-01-07T00:49:18+00:00",
        "name": "ReferralCandy",
        "shopify_app": {
          "all_names": [
            "Referral Candy \u0026 Affiliate",
            "ReferralCandy"
          ],
          "categories": [
            "affiliate programs",
            "loyalty and rewards"
          ],
          "installed_at": "2022-01-07T00:49:18Z",
          "installed_at_sfdc": "2022-01-07T00:49:18+00:00",
          "name": "Referral Candy \u0026 Affiliate",
          "platform": "shopify",
          "platform_install_rank": 771,
          "technology": "ReferralCandy",
          "uninstalled_at": "2024-11-07T16:37:00Z",
          "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
        },
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Retention Science": {
        "all_names": [
          "Retention Science"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Retention Science",
        "uninstalled_at": "2023-09-13T20:40:31Z",
        "uninstalled_at_sfdc": "2023-09-13T20:40:31+00:00"
      },
      "Retention.com": {
        "all_names": [
          "Retention.com"
        ],
        "installed_at": "2025-11-12T11:39:56Z",
        "installed_at_sfdc": "2025-11-12T11:39:56+00:00",
        "name": "Retention.com"
      },
      "Returnly": {
        "all_names": [
          "Returnly"
        ],
        "categories": [
          "returns and exchanges"
        ],
        "installed_at": "2023-04-27T21:54:52Z",
        "installed_at_sfdc": "2023-04-27T21:54:52+00:00",
        "name": "Returnly",
        "shopify_app": {
          "all_names": [
            "Returnly by Affirm",
            "Returnly"
          ],
          "categories": [
            "returns and exchanges"
          ],
          "installed_at": "2023-04-27T21:54:52Z",
          "installed_at_sfdc": "2023-04-27T21:54:52+00:00",
          "name": "Returnly by Affirm",
          "platform": "shopify",
          "platform_install_rank": 1727,
          "technology": "Returnly",
          "uninstalled_at": "2023-09-20T16:18:16Z",
          "uninstalled_at_sfdc": "2023-09-20T16:18:16+00:00"
        },
        "uninstalled_at": "2023-09-20T16:18:16Z",
        "uninstalled_at_sfdc": "2023-09-20T16:18:16+00:00"
      },
      "Shogun": {
        "all_names": [
          "Shogun"
        ],
        "categories": [
          "page builder",
          "upsell and cross-sell"
        ],
        "installed_at": "2021-05-20T23:34:50Z",
        "installed_at_sfdc": "2021-05-20T23:34:50+00:00",
        "name": "Shogun",
        "shopify_app": {
          "all_names": [
            "Shogun ‑ Landing Page Builder",
            "Shogun"
          ],
          "categories": [
            "page builder",
            "upsell and cross-sell"
          ],
          "installed_at": "2021-05-20T23:34:50Z",
          "installed_at_sfdc": "2021-05-20T23:34:50+00:00",
          "name": "Shogun ‑ Landing Page Builder",
          "platform": "shopify",
          "platform_install_rank": 58,
          "technology": "Shogun",
          "uninstalled_at": "2025-06-07T08:42:43Z",
          "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
        },
        "uninstalled_at": "2025-06-07T08:42:43Z",
        "uninstalled_at_sfdc": "2025-06-07T08:42:43+00:00"
      },
      "Shop Pay": {
        "all_names": [
          "Shop Pay"
        ],
        "installed_at": "2021-01-02T00:51:15Z",
        "installed_at_sfdc": "2021-01-02T00:51:15+00:00",
        "name": "Shop Pay"
      },
      "Shopify Fulfillment Network": {
        "all_names": [
          "Shopify Fulfillment Network"
        ],
        "categories": [
          "outsourced fulfillment",
          "fulfilling orders - other"
        ],
        "installed_at": "2023-11-23T21:39:16Z",
        "installed_at_sfdc": "2023-11-23T21:39:16+00:00",
        "name": "Shopify Fulfillment Network",
        "shopify_app": {
          "all_names": [
            "Shopify Fulfillment Network"
          ],
          "categories": [
            "outsourced fulfillment",
            "fulfilling orders - other"
          ],
          "installed_at": "2023-11-23T21:39:16Z",
          "installed_at_sfdc": "2023-11-23T21:39:16+00:00",
          "name": "Shopify Fulfillment Network",
          "platform": "shopify",
          "platform_install_rank": 2873,
          "technology": "Shopify Fulfillment Network",
          "uninstalled_at": "2023-12-13T18:57:59Z",
          "uninstalled_at_sfdc": "2023-12-13T18:57:59+00:00"
        },
        "uninstalled_at": "2023-12-13T18:57:59Z",
        "uninstalled_at_sfdc": "2023-12-13T18:57:59+00:00"
      },
      "Shopify Promise": {
        "all_names": [
          "Shopify Promise"
        ],
        "installed_at": "2025-11-04T14:26:00Z",
        "installed_at_sfdc": "2025-11-04T14:26:00+00:00",
        "name": "Shopify Promise"
      },
      "Signifyd": {
        "all_names": [
          "Signifyd"
        ],
        "categories": [
          "fraud",
          "returns and warranty - other"
        ],
        "installed_at": "2023-03-30T17:54:39Z",
        "installed_at_sfdc": "2023-03-30T17:54:39+00:00",
        "name": "Signifyd",
        "shopify_app": {
          "all_names": [
            "Signifyd",
            "Signifyd‑Chargeback Protection"
          ],
          "categories": [
            "fraud",
            "returns and warranty - other"
          ],
          "installed_at": "2023-03-30T17:54:39Z",
          "installed_at_sfdc": "2023-03-30T17:54:39+00:00",
          "name": "Signifyd",
          "platform": "shopify",
          "platform_install_rank": 495,
          "technology": "Signifyd"
        }
      },
      "Snap Pixel": {
        "all_names": [
          "Snap Pixel"
        ],
        "installed_at": "2022-07-20T02:07:43Z",
        "installed_at_sfdc": "2022-07-20T02:07:43+00:00",
        "name": "Snap Pixel",
        "uninstalled_at": "2022-07-26T22:47:49Z",
        "uninstalled_at_sfdc": "2022-07-26T22:47:49+00:00"
      },
      "Steelhouse": {
        "all_names": [
          "Steelhouse"
        ],
        "installed_at": "2022-03-23T10:05:08Z",
        "installed_at_sfdc": "2022-03-23T10:05:08+00:00",
        "name": "Steelhouse"
      },
      "SwellRewards": {
        "all_names": [
          "SwellRewards"
        ],
        "categories": [
          "loyalty and rewards"
        ],
        "installed_at": "2024-06-11T18:20:59Z",
        "installed_at_sfdc": "2024-06-11T18:20:59+00:00",
        "name": "SwellRewards",
        "shopify_app": {
          "all_names": [
            "Yotpo: Loyalty Rewards Program",
            "Yotpo: Loyalty \u0026 Rewards",
            "Yotpo Loyalty Rewards Referral",
            "SwellRewards"
          ],
          "categories": [
            "loyalty and rewards"
          ],
          "installed_at": "2024-06-11T18:20:59Z",
          "installed_at_sfdc": "2024-06-11T18:20:59+00:00",
          "name": "Yotpo: Loyalty Rewards Program",
          "platform": "shopify",
          "platform_install_rank": 169,
          "technology": "SwellRewards",
          "uninstalled_at": "2024-11-07T16:37:00Z",
          "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
        },
        "uninstalled_at": "2024-11-07T16:37:00Z",
        "uninstalled_at_sfdc": "2024-11-07T16:37:00+00:00"
      },
      "Taboola": {
        "all_names": [
          "Taboola"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Taboola",
        "uninstalled_at": "2022-04-06T20:13:06Z",
        "uninstalled_at_sfdc": "2022-04-06T20:13:06+00:00"
      },
      "Tapcart": {
        "all_names": [
          "Tapcart"
        ],
        "categories": [
          "mobile app builder"
        ],
        "installed_at": "2025-04-29T03:36:13Z",
        "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
        "name": "Tapcart",
        "shopify_app": {
          "all_names": [
            "Tapcart ‑ Mobile App Builder",
            "Tapcart"
          ],
          "categories": [
            "mobile app builder"
          ],
          "installed_at": "2025-04-29T03:36:13Z",
          "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
          "name": "Tapcart ‑ Mobile App Builder",
          "platform": "shopify",
          "platform_install_rank": 574,
          "technology": "Tapcart"
        }
      },
      "TikTok Pixel": {
        "all_names": [
          "TikTok Pixel"
        ],
        "installed_at": "2021-12-08T06:07:05Z",
        "installed_at_sfdc": "2021-12-08T06:07:05+00:00",
        "name": "TikTok Pixel"
      },
      "TurnTo": {
        "all_names": [
          "TurnTo"
        ],
        "installed_at": "2021-03-30T08:10:58Z",
        "installed_at_sfdc": "2021-03-30T08:10:58+00:00",
        "name": "TurnTo",
        "uninstalled_at": "2024-09-18T01:18:16Z",
        "uninstalled_at_sfdc": "2024-09-18T01:18:16+00:00"
      },
      "Twitter Pixel": {
        "all_names": [
          "Twitter Pixel"
        ],
        "installed_at": "2022-02-05T11:22:41Z",
        "installed_at_sfdc": "2022-02-05T11:22:41+00:00",
        "name": "Twitter Pixel",
        "uninstalled_at": "2023-02-07T08:52:47Z",
        "uninstalled_at_sfdc": "2023-02-07T08:52:47+00:00"
      },
      "Vimeo": {
        "all_names": [
          "Vimeo"
        ],
        "installed_at": "2023-11-15T21:51:18Z",
        "installed_at_sfdc": "2023-11-15T21:51:18+00:00",
        "name": "Vimeo"
      },
      "Voyage SMS": {
        "all_names": [
          "Voyage SMS"
        ],
        "installed_at": "2022-01-29T05:47:50Z",
        "installed_at_sfdc": "2022-01-29T05:47:50+00:00",
        "name": "Voyage SMS",
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "Yotpo": {
        "all_names": [
          "Yotpo"
        ],
        "installed_at": "2024-11-07T16:37:00Z",
        "installed_at_sfdc": "2024-11-07T16:37:00+00:00",
        "name": "Yotpo"
      },
      "YouTube Player": {
        "all_names": [
          "YouTube Player"
        ],
        "installed_at": "2021-02-13T03:32:14Z",
        "installed_at_sfdc": "2021-02-13T03:32:14+00:00",
        "name": "YouTube Player",
        "uninstalled_at": "2024-02-01T04:34:07Z",
        "uninstalled_at_sfdc": "2024-02-01T04:34:07+00:00"
      },
      "reCAPTCHA": {
        "all_names": [
          "reCAPTCHA"
        ],
        "installed_at": "2020-09-06T09:57:34Z",
        "installed_at_sfdc": "2020-09-06T09:57:34+00:00",
        "name": "reCAPTCHA",
        "uninstalled_at": "2023-11-23T21:39:16Z",
        "uninstalled_at_sfdc": "2023-11-23T21:39:16+00:00"
      },
      "shop my": {
        "all_names": [
          "shop my"
        ],
        "installed_at": "2025-04-29T03:36:13Z",
        "installed_at_sfdc": "2025-04-29T03:36:13+00:00",
        "name": "shop my"
      }
    },
    "theme_name": "dawn",
    "theme_vendor": "Unknown",
    "theme_version": "8.0.0-rc",
    "tiktok_followers": 1600000,
    "tracking_page_url": "https://www.stanley1913.com/pages/order-tracking",
    "trustpilot_average_rating": 1.5,
    "trustpilot_reviews": 203,
    "twitter_followers": 0,
    "warranty_page_url": "https://www.stanley1913.com/pages/product-warranty",
    "youtube_followers": 19400
  },
  "now": "2025-12-05T03:04:45.754994428Z"
}

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