wappalyzer icon indicating copy to clipboard operation
wappalyzer copied to clipboard

Updated Shopify detection to avoid false positives

Open rockeynebhwani opened this issue 8 months ago • 7 comments

Description of the changes...

Shopify's current detection looks for any scripts from domain 'cdn.shopify.com'. This will result in false positives as now Shopify allows some of it's tech to be used on non-Shopify sites (Example - Shop Pay). This is also the reason we removed 'implies:Shopify' from Shop Pay detection

Test websites:

  • https://www.everlane.com/ (Has Shop Pay but not on Shopify)

rockeynebhwani avatar Apr 05 '25 21:04 rockeynebhwani

@tunetheweb - We can always be cautious here and add a duplicate entry for Shopify but in my most experience, all Shopify sites including headless ones have request header x-shop-id, so I was hoping that this is a better way anyways but we can consult somebody from Shopify on this.

Are you able to check for me count of sites with request header 'x-shop-id' check?

Though 'Shop Pay' in on Shopify's infrastructure but we are putting Shopify under 'ECcommerce' / 'CMS' categories and in case of sites like Everlane, that's not true. They are just using 'Shop Pay' as payment processor but not 'Shopify' as CMS.

rockeynebhwani avatar Apr 06 '25 12:04 rockeynebhwani

MAybe should leave the current category as is, and add a new "Shopify CMS" category then with reduced checks?

tunetheweb avatar Apr 06 '25 16:04 tunetheweb

@tunetheweb - Let's query site counts based on request header 'x-shop-id' first and if the difference is a lot, I am happy to introduce a new entry.

rockeynebhwani avatar Apr 06 '25 21:04 rockeynebhwani

That does indeed make it better, but still a drop of 1-2k, but maybe that's how many non-Shopify CMS Shop Pay sites there are?

type client origins
both desktop 533,808
both mobile 618,420
sdks only desktop 532,141
sdks only mobile 616,358

However, I still argue that the description of the Shopify Wappalyzer app ("Shopify is a subscription-based software that allows anyone to set up an online store and sell their products. Shopify store owners can also sell in physical locations using Shopify POS, a point-of-sale app and accompanying hardware.") still seems to apply to Shop Pay?

So still think we should add a new "Shopify CMS" category with the reduced checks. See how that runs, and then possibly remove the CMS category from the main Shopify detection the month after.

SQL:

SELECT
  'both' AS type,
  client,
  COUNT(DISTINCT root_page) AS origins
FROM
  `httparchive.crawl.requests`
WHERE
  date = "2025-03-01" AND
  (
    ((url LIKE 'https://cdn.shopify.com%' OR url LIKE 'https://sdks.shopifycdn.com%') AND type = 'script')
    OR
    ('x-shopid' IN (SELECT LOWER(resp.name) FROM UNNEST(response_headers) AS resp) AND type = 'html' AND is_main_document)
  )
GROUP BY
  client
UNION ALL
SELECT
  'sdks only',
  client,
  COUNT(DISTINCT root_page) AS origins
FROM
  `httparchive.crawl.requests`
WHERE
  date = "2025-03-01" AND
  (
    (url LIKE 'https://sdks.shopifycdn.com%' AND type = 'script')
    OR
    ('x-shopid' IN (SELECT LOWER(resp.name) FROM UNNEST(response_headers) AS resp) AND type = 'html' AND is_main_document)
  )
GROUP BY
  client
ORDER BY
  type,
  client

tunetheweb avatar Apr 06 '25 21:04 tunetheweb

Thanks @tunetheweb .. This is good.. Are you able to pull the list of those 1-2 k sites for me which are now missing. I don't think 'Shop Pay' adoption on non-Shopify sites is that much as of now. It's an offering for enterprises and 1-2k seems a lot for that.. If I can get that list, I will be able to check those sites and maybe adjust the checks even more.

rockeynebhwani avatar Apr 07 '25 07:04 rockeynebhwani

https://docs.google.com/spreadsheets/d/1FQpWNtazy4leIhjdRx5jHaQX1I2r-p5aaXO0etBC9VI/edit?gid=334521558#gid=334521558

tunetheweb avatar Apr 07 '25 09:04 tunetheweb

@tunetheweb - I checked lots of sites randomly from the list you provided and none of the sites in my random checks were actual Shopify sites... These sites are getting detected as Shopify because there are lots of left overs in code for scripts hosted on cdn.shopify.com which devs haven't removed... So, I am not worried about these sites disappearing as currently these sites are mis-represented as 'Shopify'.

But if you still want me to add a duplicate entry for Shopify, I can do that. Let me know what you want me to name it.

rockeynebhwani avatar Aug 25 '25 09:08 rockeynebhwani

@yoavweiss @krzksz do have you any opinions here?

@rockeynebhwani is concerned we're over detecting Shopify sites as we currently consider any site loading any asset from sdks.shopifycdn.com or cdn.shopify.com as a "Shopify" site. He wants to drop cdn.shopify.com from the checks and leave just sdks.shopifycdn.com. It appears, that would drastically reduce the number of Shopify sites to about 3,000 however, if we also include the other checks (like x-shopid HTTP Header) then the reduction is much smaller.

One comment I have is that Shop Pay sites are still "Shopify" in some sense of a word, so maybe we should continue to monitor those and maybe we should continue to have an overall "Shopify" and add a separate "Shopify CMS" detection, with the more reduced scope? Or reduce the scope of a "Shopify" site and add a new detection ("Shopify libraries"? "Shopify technologies"? Something else?) with the sider scope.

tunetheweb avatar Aug 25 '25 10:08 tunetheweb

I'm mostly in line with @rockeynebhwani's changes here, but I have a few remarks.

I think we should keep things separate:

  • Shopify - managed ecommerce platform that hosts your store with your own Liquid theme.
  • Hydrogen - same as above, but a headless solution for your custom storefront.
  • Shop Pay - Shopify's payment solution with a "Buy with Shop Pay" button people can add to their non-Shopify websites.

There are also some new things:

  • Shopify Buy Button - a standard buy button people can add to their non-Shopify websites.
  • Shopify Web Components - a broader set of web components people can add to their non-Shopify websites.

Proposed changes

  • For Shopify:
    • [ ] Get rid of both cdn.shopify.com and sdks.shopifycdn.com.
    • [ ] Add powered-by: Shopify header detection check. In general, the presence of either Shopify global object or this header should be enough but we can keep others just to be safe.
  • Hydrogen is fine I think.
  • Shop Pay looks good with @rockeynebhwani's changes.
  • For Shopify Buy Button:
    • [ ] Detect a JS file coming from https://sdks.shopifycdn.com/buy-button/
  • For Shopify Web Components
    • [ ] Detect a https://cdn.shopify.com/storefront/web-components.js JS file.

I happy to do all of the above, or just the extra portion, just let me know what you prefer.

krzksz avatar Aug 25 '25 12:08 krzksz

I happy to do all of the above, or just the extra portion, just let me know what you prefer.

Let's have @rockeynebhwani make the additional two changes I suggested above to this PR.

Then you @krzksz can open a separate PR for Shopify Buy Button and Shopify Web Components

tunetheweb avatar Aug 25 '25 13:08 tunetheweb

@tunetheweb @krzksz Addressed the feedback. I also added Shopify Web Components... Shopify Buy button entry was already present. just modified that a bit

rockeynebhwani avatar Aug 25 '25 13:08 rockeynebhwani

Go any example sites of each that you can add to the first comment to test the detection?

tunetheweb avatar Aug 25 '25 14:08 tunetheweb

@krzksz - Do you have example sites for Shopify Buy Button and Shopify web components.. I used to have example site for Shopify buy Button as I had added that originally but that history got lost as Wappalyzer repo became private.. I don't have an easy way to find example site

rockeynebhwani avatar Aug 25 '25 14:08 rockeynebhwani

@krzksz - found this site with buy button - https://alfatah.pk/ but this is using https://sdks.shopifycdn.com/js-buy-sdk/v3/latest/index.unoptimized.umd.min.js

rockeynebhwani avatar Aug 25 '25 14:08 rockeynebhwani

@krzksz - Do you have example sites for Shopify Buy Button and Shopify web components.. I used to have example site for Shopify buy Button as I had added that originally but that history got lost as Wappalyzer repo became private.. I don't have an easy way to find example site

For buy button I found:

  • https://www.iti.com/courses/rigging/bull-rigging-ilt
  • https://www.napoleon.com/

And for components:

  • https://www.poppys.com/
  • https://sistersandseekers.com/

krzksz avatar Aug 25 '25 14:08 krzksz

Go any example sites of each that you can add to the first comment to test the detection?

@tunetheweb - Added the examples shared by @krzksz in original comment

rockeynebhwani avatar Aug 25 '25 14:08 rockeynebhwani

@krzksz - found this site with buy button - https://alfatah.pk/ but this is using https://sdks.shopifycdn.com/js-buy-sdk/v3/latest/index.unoptimized.umd.min.js

Oh yeah, I think that's a deprecated version: https://github.com/Shopify/js-buy-sdk

I think we can catch both if it's not too much work.

krzksz avatar Aug 25 '25 14:08 krzksz

@krzksz - found this site with buy button - https://alfatah.pk/ but this is using https://sdks.shopifycdn.com/js-buy-sdk/v3/latest/index.unoptimized.umd.min.js

Oh yeah, I think that's a deprecated version: https://github.com/Shopify/js-buy-sdk

I think we can catch both if it's not too much work.

Not a problem.. added check

rockeynebhwani avatar Aug 25 '25 14:08 rockeynebhwani

I don't understand why https://www.napoleon.com/ failed to match the Shopify Buy Button detection. Anyone spot anything I can't?

Other than that, this looks good.

tunetheweb avatar Aug 25 '25 15:08 tunetheweb

I think this is because it loads for a very long time. Let me find some other examples.

krzksz avatar Aug 25 '25 16:08 krzksz

  • https://www.napoleon.com/en/ca/corporate/welcome

I also tried changing it to the final URL I see: https://www.napoleon.com/en/ca/corporate/welcome

Maybe the detection happens before the redirect happens? Rerunning now to check...

But yes, it does seem to be a very slow and heavy site!

tunetheweb avatar Aug 25 '25 16:08 tunetheweb

Here are some more examples for the buy button:

  • https://cad-comic.com/
  • https://woolfolkyarn.com/
  • https://nutri-paw.com/
  • https://arneclo.com/

krzksz avatar Aug 25 '25 16:08 krzksz

OK that worked. So I guess it's just a slow client-side redirect and Wappalyzer might be running too early.

tunetheweb avatar Aug 25 '25 16:08 tunetheweb

Actually I've one more question on this.

Currently the Shopify Buy Button is in category 100:

    "name": "Shopify apps",
    "description": "Extend the functionality of Shopify stores",

My understanding is the Shopify Buy Button is for non-Shopify sites, so not sure this if the best category for it. Would this be better placed under one or more of these categories:

  • 6 - Ecommerce - Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments
  • 48 - Payment processors - Systems that handle online transactions
  • 59 - JavaScript libraries - Collections of pre-written JavaScript code

tunetheweb avatar Aug 25 '25 18:08 tunetheweb

Ugh, tough question. Given the descriptions I would keep it where it is. Unlike Shop Pay, the Buy Button is still powered by main Shopify platform and is a feature that you need to enable in your store to use it externally.

krzksz avatar Aug 25 '25 18:08 krzksz

Ah OK so it is more like a fancy embedded link from a store to another site, rather than a completely separate thing (whichb is Shop Pay by the sounds of things). Sounds good to leave it then.

tunetheweb avatar Aug 25 '25 18:08 tunetheweb

WPT test run for https://almanac.httparchive.org/en/2022/

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_DC_1 Detected technologies:

{
    "detected": {
        "IaaS": "Google Cloud",
        "JavaScript libraries": "web-vitals",
        "RUM": "web-vitals",
        "Performance": "Priority Hints,Google Cloud Trace",
        "Security": "HSTS",
        "Webmail": "Google Workspace",
        "Email": "Google Workspace",
        "Analytics": "Google Analytics",
        "CDN": "Cloudflare",
        "Miscellaneous": "RSS,Open Graph"
    },
    "detected_apps": {
        "Google Cloud": "",
        "web-vitals": "",
        "Priority Hints": "",
        "HSTS": "",
        "Google Workspace": "",
        "Google Cloud Trace": "",
        "Google Analytics": "",
        "Cloudflare": "",
        "RSS": "",
        "Open Graph": ""
    },
    "detected_technologies": {
        "Google Cloud": {
            "name": "Google Cloud",
            "description": "Google Cloud is a suite of cloud computing services.",
            "slug": "google-cloud",
            "categories": [
                {
                    "id": 63,
                    "slug": "iaas",
                    "description": "Provides computing resources",
                    "groups": [
                        7
                    ],
                    "name": "IaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Cloud.svg",
            "website": "https://cloud.google.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:google:cloud_platform:*:*:*:*:*:*:*:*"
        },
        "web-vitals": {
            "name": "web-vitals",
            "description": "The web-vitals JavaScript is a tiny, modular library for measuring all the web vitals metrics on real users.",
            "slug": "web-vitals",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                },
                {
                    "id": 78,
                    "slug": "rum",
                    "description": "Tools that track performance as experienced by users",
                    "groups": [
                        2
                    ],
                    "name": "RUM",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "web-vitals.svg",
            "website": "https://github.com/GoogleChrome/web-vitals",
            "pricing": [],
            "cpe": null
        },
        "Priority Hints": {
            "name": "Priority Hints",
            "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.",
            "slug": "priority-hints",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Priority Hints.svg",
            "website": "https://wicg.github.io/priority-hints/",
            "pricing": [],
            "cpe": null
        },
        "HSTS": {
            "name": "HSTS",
            "description": "HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.",
            "slug": "hsts",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://www.rfc-editor.org/rfc/rfc6797#section-6.1",
            "pricing": [],
            "cpe": null
        },
        "Google Workspace": {
            "name": "Google Workspace",
            "description": "Google Workspace, formerly G Suite, is a collection of cloud computing, productivity and collaboration tools.",
            "slug": "google-workspace",
            "categories": [
                {
                    "id": 30,
                    "slug": "webmail",
                    "description": "Systems that allow users to send and receive emails through a browser",
                    "groups": [
                        4
                    ],
                    "name": "Webmail",
                    "priority": 2
                },
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google.svg",
            "website": "https://workspace.google.com/",
            "pricing": [],
            "cpe": null
        },
        "Google Cloud Trace": {
            "name": "Google Cloud Trace",
            "description": "Google Cloud Trace is a distributed tracing system that collects latency data from applications and displays it in the Google Cloud Console.",
            "slug": "google-cloud-trace",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "google-cloud-trace.svg",
            "website": "https://cloud.google.com/trace",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "RSS": {
            "name": "RSS",
            "description": "RSS is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format.",
            "slug": "rss",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "RSS.svg",
            "website": "https://www.rssboard.org/rss-specification",
            "pricing": [],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        }
    }
}
WPT test run for https://www.everlane.com/

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_WP_2 Detected technologies:

{
    "detected": {
        "CMS": "Builder.io",
        "Search engines": "Constructor.io",
        "Programming languages": "Node.js",
        "Cross border ecommerce": "With Reach",
        "JavaScript frameworks": "React,Next.js 14.2.28,Emotion",
        "Payment processors": "Shop Pay",
        "Web frameworks": "Next.js 14.2.28",
        "Development": "Emotion",
        "Analytics": "TikTok Pixel,Sift,Google Analytics,Facebook Pixel 2.9.226,Contentsquare,Cloudflare Browser Insights",
        "JavaScript libraries": "core-js 3.36.0,jQuery 3.7.1",
        "Security": "Cloudflare Turnstile,Sift,HSTS,Cloudflare Bot Management",
        "Marketing automation": "Blotout EdgeTag,Wunderkind,MailChimp,Klaviyo",
        "Accessibility": "AccessiBe",
        "Performance": "Priority Hints",
        "Advertising": "theTradeDesk,LiveIntent",
        "Email": "Sendgrid,MailChimp,LiveIntent,Google Workspace",
        "Content curation": "Pixlee TurnTo",
        "Affiliate programs": "Pepperjam",
        "Cookie compliance": "OneTrust",
        "Live chat": "Kustomer",
        "CRM": "Kustomer",
        "CDN": "jsDelivr,cdnjs,Cloudflare",
        "Webmail": "Google Workspace",
        "Tag managers": "Google Tag Manager",
        "A/B Testing": "Contentsquare",
        "RUM": "Cloudflare Browser Insights",
        "Personalisation": "Attentive",
        "Miscellaneous": "Webpack,Open Graph,HTTP/3"
    },
    "detected_apps": {
        "Builder.io": "",
        "Constructor.io": "",
        "Node.js": "",
        "With Reach": "",
        "React": "",
        "Shop Pay": "",
        "Next.js": "14.2.28",
        "Emotion": "",
        "TikTok Pixel": "",
        "core-js": "3.36.0",
        "Cloudflare Turnstile": "",
        "Blotout EdgeTag": "",
        "AccessiBe": "",
        "Priority Hints": "",
        "Wunderkind": "",
        "theTradeDesk": "",
        "Sift": "",
        "Sendgrid": "",
        "Pixlee TurnTo": "",
        "Pepperjam": "",
        "OneTrust": "",
        "MailChimp": "",
        "LiveIntent": "",
        "Kustomer": "",
        "Klaviyo": "",
        "jsDelivr": "",
        "jQuery": "3.7.1",
        "HSTS": "",
        "Google Workspace": "",
        "Google Tag Manager": "",
        "Google Analytics": "",
        "Facebook Pixel": "2.9.226",
        "cdnjs": "",
        "Contentsquare": "",
        "Cloudflare Browser Insights": "",
        "Cloudflare Bot Management": "",
        "Cloudflare": "",
        "Attentive": "",
        "Webpack": "",
        "Open Graph": "",
        "HTTP/3": ""
    },
    "detected_technologies": {
        "Builder.io": {
            "name": "Builder.io",
            "description": "Builder.io is a headless CMS with a powerful drag-and-drop visual editor that lets you build and optimize digital experiences with speed and flexibility. ",
            "slug": "builder-io",
            "categories": [
                {
                    "id": 1,
                    "slug": "cms",
                    "description": "Platforms used to create, manage, and modify content on a website without needing specialized technical knowledge",
                    "groups": [
                        3
                    ],
                    "name": "CMS",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Builder.svg",
            "website": "https://builder.io",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "Constructor.io": {
            "name": "Constructor.io",
            "description": "Constructor.io is a site search and merchandising platform designed to help ecommerce.",
            "slug": "constructor-io",
            "categories": [
                {
                    "id": 29,
                    "slug": "search-engines",
                    "description": "Embedded on websites to allow users to find specific content",
                    "groups": [
                        3
                    ],
                    "name": "Search engines",
                    "priority": 4
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "ConstructorIO.png",
            "website": "https://constructor.io/",
            "pricing": [
                "high",
                "recurring"
            ],
            "cpe": null
        },
        "Node.js": {
            "name": "Node.js",
            "description": "Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside a web browser.",
            "slug": "node-js",
            "categories": [
                {
                    "id": 27,
                    "slug": "programming-languages",
                    "description": "Build website functionalities and backend services",
                    "groups": [
                        9
                    ],
                    "name": "Programming languages",
                    "priority": 5
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Node.js.svg",
            "website": "https://nodejs.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:nodejs:node.js:*:*:*:*:*:*:*:*"
        },
        "With Reach": {
            "name": "With Reach",
            "description": "With Reach is a fintech/payments service provider that helps retailers connect with customers around the world.",
            "slug": "with-reach",
            "categories": [
                {
                    "id": 106,
                    "slug": "cross-border-ecommerce",
                    "description": "Solutions that handle the complexities of selling products internationally",
                    "groups": [
                        1
                    ],
                    "name": "Cross border ecommerce",
                    "priority": 6
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "With Reach.svg",
            "website": "https://www.withreach.com",
            "pricing": [
                "payg"
            ],
            "cpe": null
        },
        "React": {
            "name": "React",
            "description": "React is an open-source JavaScript library for building user interfaces or UI components.",
            "slug": "react",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "React.svg",
            "website": "https://reactjs.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:facebook:react:*:*:*:*:*:*:*:*"
        },
        "Shop Pay": {
            "name": "Shop Pay",
            "description": "Shop Pay is an accelerated checkout that lets customers save their email address, credit card, and shipping and billing information so they can complete their transaction faster the next time they are directed to the Shopify checkout.",
            "slug": "shop-pay",
            "categories": [
                {
                    "id": 41,
                    "slug": "payment-processors",
                    "description": "Systems that handle online transactions",
                    "groups": [
                        1
                    ],
                    "name": "Payment processors",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shop Pay.svg",
            "website": "https://shop.app",
            "pricing": [],
            "cpe": null
        },
        "Next.js": {
            "name": "Next.js",
            "description": "Next.js is a React framework for developing single page Javascript applications.",
            "slug": "next-js",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                },
                {
                    "id": 18,
                    "slug": "web-frameworks",
                    "description": "Software that provides a structure for building web applications",
                    "groups": [
                        9
                    ],
                    "name": "Web frameworks",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "14.2.28",
            "icon": "Next.js.svg",
            "website": "https://nextjs.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:*"
        },
        "Emotion": {
            "name": "Emotion",
            "description": "Emotion is a library designed for writing CSS styles with JavaScript.",
            "slug": "emotion",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                },
                {
                    "id": 47,
                    "slug": "development",
                    "description": "Tools that assist in building and debugging websites and applications",
                    "groups": [
                        9
                    ],
                    "name": "Development",
                    "priority": 2
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Emotion.png",
            "website": "https://emotion.sh",
            "pricing": [],
            "cpe": null
        },
        "TikTok Pixel": {
            "name": "TikTok Pixel",
            "description": null,
            "slug": "tiktok-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "TikTok.svg",
            "website": "https://ads.tiktok.com",
            "pricing": [],
            "cpe": null
        },
        "core-js": {
            "name": "core-js",
            "description": "core-js is a modular standard library for JavaScript, with polyfills for cutting-edge ECMAScript features.",
            "slug": "core-js",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.36.0",
            "icon": "core-js.png",
            "website": "https://github.com/zloirock/core-js",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare Turnstile": {
            "name": "Cloudflare Turnstile",
            "description": "Turnstile is Cloudflare's smart CAPTCHA alternative.",
            "slug": "cloudflare-turnstile",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com/products/turnstile",
            "pricing": [
                "freemium",
                "poa"
            ],
            "cpe": null
        },
        "Blotout EdgeTag": {
            "name": "Blotout EdgeTag",
            "description": "Blotout EdgeTag is a technology provided by Blotout that tackles the effects of privacy changes on C-API signals by reconstructing signals around a lifetime ID, allowing for real-time remarketing of site visits.",
            "slug": "blotout-edgetag",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Blotout.svg",
            "website": "https://blotout.io",
            "pricing": [
                "recurring"
            ],
            "cpe": null
        },
        "AccessiBe": {
            "name": "AccessiBe",
            "description": "AccessiBe is an accessibility overlay which claims to provide ADA and WCAG compliance. The system scans and analyzes a website, and applies adjustments which they claim make your website ADA and WCAG 2.1 compliant.",
            "slug": "accessibe",
            "categories": [
                {
                    "id": 68,
                    "slug": "accessibility",
                    "description": "Technologies that help users with disabilities navigate websites",
                    "groups": [
                        9
                    ],
                    "name": "Accessibility",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "AccessiBe.svg",
            "website": "https://accessibe.com",
            "pricing": [
                "mid",
                "recurring"
            ],
            "cpe": null
        },
        "Priority Hints": {
            "name": "Priority Hints",
            "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.",
            "slug": "priority-hints",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Priority Hints.svg",
            "website": "https://wicg.github.io/priority-hints/",
            "pricing": [],
            "cpe": null
        },
        "Wunderkind": {
            "name": "Wunderkind",
            "description": "Wunderkind (Formerly BounceX) is a software for behavioural marketing technologies, created to de-anonymise site visitors, analyse their digital behaviour and create relevant digital experiences regardless of channel or device.",
            "slug": "wunderkind",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Wunderkind.svg",
            "website": "https://www.wunderkind.co",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "theTradeDesk": {
            "name": "theTradeDesk",
            "description": "theTradeDesk is an technology company that markets a software platform used by digital ad buyers to purchase data-driven digital advertising campaigns across various ad formats and devices.",
            "slug": "thetradedesk",
            "categories": [
                {
                    "id": 36,
                    "slug": "advertising",
                    "description": "Platforms that display ads on websites",
                    "groups": [
                        2
                    ],
                    "name": "Advertising",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "theTradeDesk.svg",
            "website": "https://www.thetradedesk.com",
            "pricing": [
                "payg"
            ],
            "cpe": null
        },
        "Sift": {
            "name": "Sift",
            "description": "Sift is a CA-based fraud prevention company.",
            "slug": "sift",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                },
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Sift.svg",
            "website": "https://sift.com/",
            "pricing": [
                "mid",
                "recurring"
            ],
            "cpe": null
        },
        "Sendgrid": {
            "name": "Sendgrid",
            "description": "SendGrid is a cloud-based email delivery platform for transactional and marketing emails.",
            "slug": "sendgrid",
            "categories": [
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "SendGrid.svg",
            "website": "https://sendgrid.com/",
            "pricing": [],
            "cpe": null
        },
        "Pixlee TurnTo": {
            "name": "Pixlee TurnTo",
            "description": "Pixlee TurnTo is a social UGC, ratings and reviews, and influencer marketing platform for community-driven brands.",
            "slug": "pixlee-turnto",
            "categories": [
                {
                    "id": 96,
                    "slug": "content-curation",
                    "description": "Systems that organize content from multiple sources",
                    "groups": [
                        2,
                        18
                    ],
                    "name": "Content curation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Pixelee TurnTo.png",
            "website": "https://pixlee.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Pepperjam": {
            "name": "Pepperjam",
            "description": "Pepperjam is an affiliate marketing solutions provider.",
            "slug": "pepperjam",
            "categories": [
                {
                    "id": 71,
                    "slug": "affiliate-programs",
                    "description": "Track marketing campaigns on websites",
                    "groups": [
                        2
                    ],
                    "name": "Affiliate programs",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Pepperjam.png",
            "website": "https://www.pepperjam.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "OneTrust": {
            "name": "OneTrust",
            "description": "OneTrust is a cloud-based data privacy management compliance platform.",
            "slug": "onetrust",
            "categories": [
                {
                    "id": 67,
                    "slug": "cookie-compliance",
                    "description": "Tools that manage user consent for cookies",
                    "groups": [
                        13
                    ],
                    "name": "Cookie compliance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "OneTrust.svg",
            "website": "https://www.onetrust.com",
            "pricing": [],
            "cpe": null
        },
        "MailChimp": {
            "name": "MailChimp",
            "description": "Mailchimp is a marketing automation platform and email marketing service.",
            "slug": "mailchimp",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                },
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "mailchimp.svg",
            "website": "https://mailchimp.com",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": "cpe:2.3:a:thinkshout:mailchimp:*:*:*:*:*:*:*:*"
        },
        "LiveIntent": {
            "name": "LiveIntent",
            "description": "LiveIntent is an email ad monetization platform.",
            "slug": "liveintent",
            "categories": [
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                },
                {
                    "id": 36,
                    "slug": "advertising",
                    "description": "Platforms that display ads on websites",
                    "groups": [
                        2
                    ],
                    "name": "Advertising",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "LiveIntent.svg",
            "website": "https://www.liveintent.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Kustomer": {
            "name": "Kustomer",
            "description": "Kustomer is a CRM platform.",
            "slug": "kustomer",
            "categories": [
                {
                    "id": 52,
                    "slug": "live-chat",
                    "description": "Tools that allow for real-time customer support",
                    "groups": [
                        4,
                        16
                    ],
                    "name": "Live chat",
                    "priority": 9
                },
                {
                    "id": 53,
                    "slug": "crm",
                    "description": "(Customer Relationship Management) Systems that help manage customer interactions",
                    "groups": [
                        2,
                        16
                    ],
                    "name": "CRM",
                    "priority": 5
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Kustomer.svg",
            "website": "https://www.kustomer.com/",
            "pricing": [],
            "cpe": null
        },
        "Klaviyo": {
            "name": "Klaviyo",
            "description": "Klaviyo is an email and SMS marketing platform for online businesses.",
            "slug": "klaviyo",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Klaviyo.svg",
            "website": "https://www.klaviyo.com/",
            "pricing": [],
            "cpe": null
        },
        "jsDelivr": {
            "name": "jsDelivr",
            "description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.",
            "slug": "jsdelivr",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "jsdelivr-icon.svg",
            "website": "https://www.jsdelivr.com/",
            "pricing": [],
            "cpe": null
        },
        "jQuery": {
            "name": "jQuery",
            "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
            "slug": "jquery",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.7.1",
            "icon": "jQuery.svg",
            "website": "https://jquery.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*"
        },
        "HSTS": {
            "name": "HSTS",
            "description": "HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.",
            "slug": "hsts",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://www.rfc-editor.org/rfc/rfc6797#section-6.1",
            "pricing": [],
            "cpe": null
        },
        "Google Workspace": {
            "name": "Google Workspace",
            "description": "Google Workspace, formerly G Suite, is a collection of cloud computing, productivity and collaboration tools.",
            "slug": "google-workspace",
            "categories": [
                {
                    "id": 30,
                    "slug": "webmail",
                    "description": "Systems that allow users to send and receive emails through a browser",
                    "groups": [
                        4
                    ],
                    "name": "Webmail",
                    "priority": 2
                },
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google.svg",
            "website": "https://workspace.google.com/",
            "pricing": [],
            "cpe": null
        },
        "Google Tag Manager": {
            "name": "Google Tag Manager",
            "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update measurement codes and related code fragments collectively known as tags on your website or mobile app.",
            "slug": "google-tag-manager",
            "categories": [
                {
                    "id": 42,
                    "slug": "tag-managers",
                    "description": "Tools that allow the addition of scripts and tracking tools to websites",
                    "groups": [
                        8
                    ],
                    "name": "Tag managers",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Tag Manager.svg",
            "website": "https://www.google.com/tagmanager",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "Facebook Pixel": {
            "name": "Facebook Pixel",
            "description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
            "slug": "facebook-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "2.9.226",
            "icon": "Facebook.svg",
            "website": "https://facebook.com",
            "pricing": [],
            "cpe": null
        },
        "cdnjs": {
            "name": "cdnjs",
            "description": "cdnjs is a free distributed JS library delivery service.",
            "slug": "cdnjs",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "cdnjs.svg",
            "website": "https://cdnjs.com",
            "pricing": [],
            "cpe": null
        },
        "Contentsquare": {
            "name": "Contentsquare",
            "description": "Contentsquare is an enterprise-level UX optimisation platform.",
            "slug": "contentsquare",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                },
                {
                    "id": 74,
                    "slug": "a-b-testing",
                    "description": "Tools that help optimize website performance and user experience",
                    "groups": [
                        8
                    ],
                    "name": "A/B Testing",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Contentsquare.svg",
            "website": "https://contentsquare.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Cloudflare Browser Insights": {
            "name": "Cloudflare Browser Insights",
            "description": "Cloudflare Browser Insights is a tool that measures the performance of websites from the perspective of users.",
            "slug": "cloudflare-browser-insights",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                },
                {
                    "id": 78,
                    "slug": "rum",
                    "description": "Tools that track performance as experienced by users",
                    "groups": [
                        2
                    ],
                    "name": "RUM",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare Bot Management": {
            "name": "Cloudflare Bot Management",
            "description": "Cloudflare bot management solution identifies and mitigates automated traffic to protect websites from bad bots.",
            "slug": "cloudflare-bot-management",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com/en-gb/products/bot-management/",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Attentive": {
            "name": "Attentive",
            "description": "Attentive is a personalised mobile messaging platform that helps retail & ecommerce brands acquire, retain, and interact with mobile shoppers.",
            "slug": "attentive",
            "categories": [
                {
                    "id": 76,
                    "slug": "personalisation",
                    "description": "Tools that tailor website content based on user data",
                    "groups": [
                        2
                    ],
                    "name": "Personalisation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Attentive.svg",
            "website": "https://www.attentivemobile.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Webpack": {
            "name": "Webpack",
            "description": "Webpack is an open-source JavaScript module bundler.",
            "slug": "webpack",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Webpack.svg",
            "website": "https://webpack.js.org/",
            "pricing": [],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        },
        "HTTP/3": {
            "name": "HTTP/3",
            "description": "HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.",
            "slug": "http-3",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "HTTP3.svg",
            "website": "https://httpwg.org/",
            "pricing": [],
            "cpe": null
        }
    }
}
WPT test run for https://rothys.com

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_7T_3 Detected technologies:

{
    "detected": {
        "Ecommerce": "Cart Functionality,Shopify",
        "CMS": "Shopify",
        "Webmail": "Apple iCloud Mail,Google Workspace",
        "Search engines": "Constructor.io",
        "Cross border ecommerce": "Global-e",
        "Shopify apps": "Swym Wishlist Plus,Intelligems",
        "Payment processors": "Shop Pay,Venmo,PayPal,Apple Pay",
        "JavaScript frameworks": "Mustache 3.0.1,Vue.js",
        "PaaS": "Amazon Web Services",
        "Analytics": "TikTok Pixel,Pinterest Conversion Tag,Snowplow Analytics,Google Analytics,Facebook Pixel 2.9.226,Amplitude",
        "JavaScript libraries": "lit-html 3.1.2,lit-element 4.0.4,core-js 3.35.1,Preact,jQuery 3.7.1",
        "Performance": "Priority Hints,Yottaa",
        "CDN": "jsDelivr,cdnjs,Cloudflare",
        "Tag managers": "Yottaa,Google Tag Manager",
        "A/B Testing": "Yottaa,Intelligems",
        "Reviews": "Yotpo Reviews",
        "Marketing automation": "Wunderkind,Mautic",
        "IaaS": "Snowplow Analytics",
        "Customer data platform": "Segment",
        "Cookie compliance": "OneTrust",
        "Advertising": "Microsoft Advertising",
        "Email": "Mailgun,Google Workspace",
        "Geolocation": "ipify",
        "Personalisation": "Intelligems,Attentive",
        "Security": "HSTS",
        "Live chat": "Gladly",
        "CRM": "Gladly",
        "Digital asset management": "Dropbox",
        "Miscellaneous": "Open Graph,HTTP/3,DocuSign"
    },
    "detected_apps": {
        "Cart Functionality": "",
        "Shopify": "",
        "Apple iCloud Mail": "",
        "Constructor.io": "",
        "Global-e": "",
        "Swym Wishlist Plus": "",
        "Shop Pay": "",
        "Mustache": "3.0.1",
        "Venmo": "",
        "PayPal": "",
        "Apple Pay": "",
        "Vue.js": "",
        "Amazon Web Services": "",
        "TikTok Pixel": "",
        "Pinterest Conversion Tag": "",
        "lit-html": "3.1.2",
        "lit-element": "4.0.4",
        "core-js": "3.35.1",
        "Priority Hints": "",
        "Preact": "",
        "jsDelivr": "",
        "Yottaa": "",
        "Yotpo Reviews": "",
        "Wunderkind": "",
        "Snowplow Analytics": "",
        "Segment": "",
        "OneTrust": "",
        "Microsoft Advertising": "",
        "Mautic": "",
        "Mailgun": "",
        "jQuery": "3.7.1",
        "ipify": "",
        "Intelligems": "",
        "HSTS": "",
        "Google Workspace": "",
        "Google Tag Manager": "",
        "Google Analytics": "",
        "Gladly": "",
        "Facebook Pixel": "2.9.226",
        "Dropbox": "",
        "cdnjs": "",
        "Cloudflare": "",
        "Attentive": "",
        "Amplitude": "",
        "Open Graph": "",
        "HTTP/3": "",
        "DocuSign": ""
    },
    "detected_technologies": {
        "Cart Functionality": {
            "name": "Cart Functionality",
            "description": "Websites that have a shopping cart or checkout page, either using a known ecommerce platform or a custom solution.",
            "slug": "cart-functionality",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Cart-generic.svg",
            "website": "https://www.wappalyzer.com/technologies/ecommerce/cart-functionality",
            "pricing": [],
            "cpe": null
        },
        "Shopify": {
            "name": "Shopify",
            "description": "Shopify is a subscription-based software that allows anyone to set up an online store and sell their products. Shopify store owners can also sell in physical locations using Shopify POS, a point-of-sale app and accompanying hardware.",
            "slug": "shopify",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                },
                {
                    "id": 1,
                    "slug": "cms",
                    "description": "Platforms used to create, manage, and modify content on a website without needing specialized technical knowledge",
                    "groups": [
                        3
                    ],
                    "name": "CMS",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://shopify.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Apple iCloud Mail": {
            "name": "Apple iCloud Mail",
            "description": "Apple iCloud Mail is a webmail service provided by Apple, Inc.",
            "slug": "apple-icloud-mail",
            "categories": [
                {
                    "id": 30,
                    "slug": "webmail",
                    "description": "Systems that allow users to send and receive emails through a browser",
                    "groups": [
                        4
                    ],
                    "name": "Webmail",
                    "priority": 2
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Apple.svg",
            "website": "https://www.apple.com/icloud/",
            "pricing": [],
            "cpe": null
        },
        "Constructor.io": {
            "name": "Constructor.io",
            "description": "Constructor.io is a site search and merchandising platform designed to help ecommerce.",
            "slug": "constructor-io",
            "categories": [
                {
                    "id": 29,
                    "slug": "search-engines",
                    "description": "Embedded on websites to allow users to find specific content",
                    "groups": [
                        3
                    ],
                    "name": "Search engines",
                    "priority": 4
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "ConstructorIO.png",
            "website": "https://constructor.io/",
            "pricing": [
                "high",
                "recurring"
            ],
            "cpe": null
        },
        "Global-e": {
            "name": "Global-e",
            "description": "Global-e is a provider of cross-border ecommerce solutions.",
            "slug": "global-e",
            "categories": [
                {
                    "id": 106,
                    "slug": "cross-border-ecommerce",
                    "description": "Solutions that handle the complexities of selling products internationally",
                    "groups": [
                        1
                    ],
                    "name": "Cross border ecommerce",
                    "priority": 6
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Global-e.svg",
            "website": "https://www.global-e.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Swym Wishlist Plus": {
            "name": "Swym Wishlist Plus",
            "description": "Swym Wishlist Plus enables your customers to bookmark their favorite products and pick up where they left off when they return.",
            "slug": "swym-wishlist-plus",
            "categories": [
                {
                    "id": 100,
                    "slug": "shopify-apps",
                    "description": "Extend the functionality of Shopify stores",
                    "groups": [
                        15
                    ],
                    "name": "Shopify apps",
                    "priority": 8
                }
            ],
            "confidence": 50,
            "version": "",
            "icon": "Swym.png",
            "website": "https://swym.it/apps/wishlist/",
            "pricing": [
                "freemium",
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Shop Pay": {
            "name": "Shop Pay",
            "description": "Shop Pay is an accelerated checkout that lets customers save their email address, credit card, and shipping and billing information so they can complete their transaction faster the next time they are directed to the Shopify checkout.",
            "slug": "shop-pay",
            "categories": [
                {
                    "id": 41,
                    "slug": "payment-processors",
                    "description": "Systems that handle online transactions",
                    "groups": [
                        1
                    ],
                    "name": "Payment processors",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shop Pay.svg",
            "website": "https://shop.app",
            "pricing": [],
            "cpe": null
        },
        "Mustache": {
            "name": "Mustache",
            "description": "Mustache is a web template system.",
            "slug": "mustache",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "3.0.1",
            "icon": "Mustache.png",
            "website": "https://mustache.github.io",
            "pricing": [],
            "cpe": null
        },
        "Venmo": {
            "name": "Venmo",
            "description": "Venmo is a mobile payment service owned by PayPal. Venmo account holders can transfer funds to others via a mobile phone app.",
            "slug": "venmo",
            "categories": [
                {
                    "id": 41,
                    "slug": "payment-processors",
                    "description": "Systems that handle online transactions",
                    "groups": [
                        1
                    ],
                    "name": "Payment processors",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Venmo.svg",
            "website": "https://venmo.com",
            "pricing": [],
            "cpe": null
        },
        "PayPal": {
            "name": "PayPal",
            "description": "PayPal is an online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods like checks and money orders.",
            "slug": "paypal",
            "categories": [
                {
                    "id": 41,
                    "slug": "payment-processors",
                    "description": "Systems that handle online transactions",
                    "groups": [
                        1
                    ],
                    "name": "Payment processors",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PayPal.svg",
            "website": "https://paypal.com",
            "pricing": [
                "payg"
            ],
            "cpe": "cpe:2.3:a:paypal:paypal:*:*:*:*:*:*:*:*"
        },
        "Apple Pay": {
            "name": "Apple Pay",
            "description": "Apple Pay is a mobile payment and digital wallet service by Apple that allows users to make payments in person, in iOS apps, and on the web.",
            "slug": "apple-pay",
            "categories": [
                {
                    "id": 41,
                    "slug": "payment-processors",
                    "description": "Systems that handle online transactions",
                    "groups": [
                        1
                    ],
                    "name": "Payment processors",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Apple.svg",
            "website": "https://www.apple.com/apple-pay",
            "pricing": [],
            "cpe": null
        },
        "Vue.js": {
            "name": "Vue.js",
            "description": "Vue.js is an open-source model–view–viewmodel JavaScript framework for building user interfaces and single-page applications.",
            "slug": "vue-js",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "vue.svg",
            "website": "https://vuejs.org",
            "pricing": [],
            "cpe": null
        },
        "Amazon Web Services": {
            "name": "Amazon Web Services",
            "description": "Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.",
            "slug": "amazon-web-services",
            "categories": [
                {
                    "id": 62,
                    "slug": "paas",
                    "description": "Provides a platform for software development",
                    "groups": [
                        7
                    ],
                    "name": "PaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amazon Web Services.svg",
            "website": "https://aws.amazon.com/",
            "pricing": [],
            "cpe": null
        },
        "TikTok Pixel": {
            "name": "TikTok Pixel",
            "description": null,
            "slug": "tiktok-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "TikTok.svg",
            "website": "https://ads.tiktok.com",
            "pricing": [],
            "cpe": null
        },
        "Pinterest Conversion Tag": {
            "name": "Pinterest Conversion Tag",
            "description": "Pinterest Conversion Tag allows you to track actions people take on your website after viewing your Promoted Pin.",
            "slug": "pinterest-conversion-tag",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Pinterest.svg",
            "website": "https://www.pinterest.com.au/business/",
            "pricing": [],
            "cpe": null
        },
        "lit-html": {
            "name": "lit-html",
            "description": "lit-html is a simple, modern, safe, small and fast HTML templating library for JavaScript.",
            "slug": "lit-html",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.1.2",
            "icon": "Lit.svg",
            "website": "https://lit.dev",
            "pricing": [],
            "cpe": null
        },
        "lit-element": {
            "name": "lit-element",
            "description": "lit-element is a simple base class for creating web components that work in any web page with any framework. lit-element uses lit-html to render into shadow DOM, and adds API to manage properties and attributes.",
            "slug": "lit-element",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "4.0.4",
            "icon": "Lit.svg",
            "website": "https://lit.dev",
            "pricing": [],
            "cpe": null
        },
        "core-js": {
            "name": "core-js",
            "description": "core-js is a modular standard library for JavaScript, with polyfills for cutting-edge ECMAScript features.",
            "slug": "core-js",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.35.1",
            "icon": "core-js.png",
            "website": "https://github.com/zloirock/core-js",
            "pricing": [],
            "cpe": null
        },
        "Priority Hints": {
            "name": "Priority Hints",
            "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.",
            "slug": "priority-hints",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Priority Hints.svg",
            "website": "https://wicg.github.io/priority-hints/",
            "pricing": [],
            "cpe": null
        },
        "Preact": {
            "name": "Preact",
            "description": "Preact is a JavaScript library that describes itself as a fast 3kB alternative to React with the same ES6 API.",
            "slug": "preact",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Preact.svg",
            "website": "https://preactjs.com",
            "pricing": [],
            "cpe": null
        },
        "jsDelivr": {
            "name": "jsDelivr",
            "description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.",
            "slug": "jsdelivr",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "jsdelivr-icon.svg",
            "website": "https://www.jsdelivr.com/",
            "pricing": [],
            "cpe": null
        },
        "Yottaa": {
            "name": "Yottaa",
            "description": "Yottaa is an ecommerce optimisation platform that helps with conversions, performance and security.",
            "slug": "yottaa",
            "categories": [
                {
                    "id": 42,
                    "slug": "tag-managers",
                    "description": "Tools that allow the addition of scripts and tracking tools to websites",
                    "groups": [
                        8
                    ],
                    "name": "Tag managers",
                    "priority": 9
                },
                {
                    "id": 74,
                    "slug": "a-b-testing",
                    "description": "Tools that help optimize website performance and user experience",
                    "groups": [
                        8
                    ],
                    "name": "A/B Testing",
                    "priority": 9
                },
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Yottaa.svg",
            "website": "https://www.yottaa.com",
            "pricing": [],
            "cpe": null
        },
        "Yotpo Reviews": {
            "name": "Yotpo Reviews",
            "description": "Yotpo is a user-generated content marketing platform.",
            "slug": "yotpo-reviews",
            "categories": [
                {
                    "id": 90,
                    "slug": "reviews",
                    "description": "Systems that display user feedback",
                    "groups": [
                        2,
                        18
                    ],
                    "name": "Reviews",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Yotpo.svg",
            "website": "https://www.yotpo.com/platform/reviews/",
            "pricing": [
                "freemium",
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Wunderkind": {
            "name": "Wunderkind",
            "description": "Wunderkind (Formerly BounceX) is a software for behavioural marketing technologies, created to de-anonymise site visitors, analyse their digital behaviour and create relevant digital experiences regardless of channel or device.",
            "slug": "wunderkind",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Wunderkind.svg",
            "website": "https://www.wunderkind.co",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Snowplow Analytics": {
            "name": "Snowplow Analytics",
            "description": "Snowplow is an open-source behavioral data management platform for businesses.",
            "slug": "snowplow-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                },
                {
                    "id": 63,
                    "slug": "iaas",
                    "description": "Provides computing resources",
                    "groups": [
                        7
                    ],
                    "name": "IaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Snowplow.svg",
            "website": "https://snowplowanalytics.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Segment": {
            "name": "Segment",
            "description": "Segment is a customer data platform (CDP) that helps you collect, clean, and control your customer data.",
            "slug": "segment",
            "categories": [
                {
                    "id": 97,
                    "slug": "customer-data-platform",
                    "description": "Gather customer data from various sources",
                    "groups": [
                        2,
                        8
                    ],
                    "name": "Customer data platform",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Segment.svg",
            "website": "https://segment.com",
            "pricing": [
                "mid",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "OneTrust": {
            "name": "OneTrust",
            "description": "OneTrust is a cloud-based data privacy management compliance platform.",
            "slug": "onetrust",
            "categories": [
                {
                    "id": 67,
                    "slug": "cookie-compliance",
                    "description": "Tools that manage user consent for cookies",
                    "groups": [
                        13
                    ],
                    "name": "Cookie compliance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "OneTrust.svg",
            "website": "https://www.onetrust.com",
            "pricing": [],
            "cpe": null
        },
        "Microsoft Advertising": {
            "name": "Microsoft Advertising",
            "description": "Microsoft Advertising is an online advertising platform developed by Microsoft.",
            "slug": "microsoft-advertising",
            "categories": [
                {
                    "id": 36,
                    "slug": "advertising",
                    "description": "Platforms that display ads on websites",
                    "groups": [
                        2
                    ],
                    "name": "Advertising",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Microsoft.svg",
            "website": "https://ads.microsoft.com",
            "pricing": [
                "payg"
            ],
            "cpe": null
        },
        "Mautic": {
            "name": "Mautic",
            "description": "Mautic is a free and open-source marketing automation tool for Content Management, Social Media, Email Marketing, and can be used for the integration of social networks, campaign management, forms, questionnaires, reports, etc.",
            "slug": "mautic",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "mautic.svg",
            "website": "https://www.mautic.org/",
            "pricing": [],
            "cpe": "cpe:2.3:a:mautic:mautic:*:*:*:*:*:*:*:*"
        },
        "Mailgun": {
            "name": "Mailgun",
            "description": "Mailgun is a transactional email API service for developers.",
            "slug": "mailgun",
            "categories": [
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Mailgun.svg",
            "website": "https://www.mailgun.com/",
            "pricing": [],
            "cpe": null
        },
        "jQuery": {
            "name": "jQuery",
            "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
            "slug": "jquery",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.7.1",
            "icon": "jQuery.svg",
            "website": "https://jquery.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*"
        },
        "ipify": {
            "name": "ipify",
            "description": "ipify is a service which provide public IP address API, IP geolocation API, VPN and Proxy detection API products.",
            "slug": "ipify",
            "categories": [
                {
                    "id": 79,
                    "slug": "geolocation",
                    "description": "Technologies that use user location data for site features",
                    "groups": [
                        17
                    ],
                    "name": "Geolocation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "ipify.png",
            "website": "https://ipify.org",
            "pricing": [
                "freemium",
                "payg",
                "mid",
                "recurring"
            ],
            "cpe": null
        },
        "Intelligems": {
            "name": "Intelligems",
            "description": "Intelligems is an experimentation platform that helps developers build and run A/B tests on websites.",
            "slug": "intelligems",
            "categories": [
                {
                    "id": 74,
                    "slug": "a-b-testing",
                    "description": "Tools that help optimize website performance and user experience",
                    "groups": [
                        8
                    ],
                    "name": "A/B Testing",
                    "priority": 9
                },
                {
                    "id": 76,
                    "slug": "personalisation",
                    "description": "Tools that tailor website content based on user data",
                    "groups": [
                        2
                    ],
                    "name": "Personalisation",
                    "priority": 9
                },
                {
                    "id": 100,
                    "slug": "shopify-apps",
                    "description": "Extend the functionality of Shopify stores",
                    "groups": [
                        15
                    ],
                    "name": "Shopify apps",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Intelligems.png",
            "website": "https://www.intelligems.io/",
            "pricing": [],
            "cpe": null
        },
        "HSTS": {
            "name": "HSTS",
            "description": "HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.",
            "slug": "hsts",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://www.rfc-editor.org/rfc/rfc6797#section-6.1",
            "pricing": [],
            "cpe": null
        },
        "Google Workspace": {
            "name": "Google Workspace",
            "description": "Google Workspace, formerly G Suite, is a collection of cloud computing, productivity and collaboration tools.",
            "slug": "google-workspace",
            "categories": [
                {
                    "id": 30,
                    "slug": "webmail",
                    "description": "Systems that allow users to send and receive emails through a browser",
                    "groups": [
                        4
                    ],
                    "name": "Webmail",
                    "priority": 2
                },
                {
                    "id": 75,
                    "slug": "email",
                    "description": "Systems that manage email communication",
                    "groups": [
                        4,
                        2
                    ],
                    "name": "Email",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google.svg",
            "website": "https://workspace.google.com/",
            "pricing": [],
            "cpe": null
        },
        "Google Tag Manager": {
            "name": "Google Tag Manager",
            "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update measurement codes and related code fragments collectively known as tags on your website or mobile app.",
            "slug": "google-tag-manager",
            "categories": [
                {
                    "id": 42,
                    "slug": "tag-managers",
                    "description": "Tools that allow the addition of scripts and tracking tools to websites",
                    "groups": [
                        8
                    ],
                    "name": "Tag managers",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Tag Manager.svg",
            "website": "https://www.google.com/tagmanager",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "Gladly": {
            "name": "Gladly",
            "description": "Gladly is a customer service platform.",
            "slug": "gladly",
            "categories": [
                {
                    "id": 52,
                    "slug": "live-chat",
                    "description": "Tools that allow for real-time customer support",
                    "groups": [
                        4,
                        16
                    ],
                    "name": "Live chat",
                    "priority": 9
                },
                {
                    "id": 53,
                    "slug": "crm",
                    "description": "(Customer Relationship Management) Systems that help manage customer interactions",
                    "groups": [
                        2,
                        16
                    ],
                    "name": "CRM",
                    "priority": 5
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Gladly.png",
            "website": "https://www.gladly.com",
            "pricing": [],
            "cpe": null
        },
        "Facebook Pixel": {
            "name": "Facebook Pixel",
            "description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
            "slug": "facebook-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "2.9.226",
            "icon": "Facebook.svg",
            "website": "https://facebook.com",
            "pricing": [],
            "cpe": null
        },
        "Dropbox": {
            "name": "Dropbox",
            "description": null,
            "slug": "dropbox",
            "categories": [
                {
                    "id": 95,
                    "slug": "digital-asset-management",
                    "description": "Systems that store and manage media files",
                    "groups": [
                        10
                    ],
                    "name": "Digital asset management",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Dropbox.svg",
            "website": "https://www.dropbox.com",
            "pricing": [],
            "cpe": null
        },
        "cdnjs": {
            "name": "cdnjs",
            "description": "cdnjs is a free distributed JS library delivery service.",
            "slug": "cdnjs",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "cdnjs.svg",
            "website": "https://cdnjs.com",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Attentive": {
            "name": "Attentive",
            "description": "Attentive is a personalised mobile messaging platform that helps retail & ecommerce brands acquire, retain, and interact with mobile shoppers.",
            "slug": "attentive",
            "categories": [
                {
                    "id": 76,
                    "slug": "personalisation",
                    "description": "Tools that tailor website content based on user data",
                    "groups": [
                        2
                    ],
                    "name": "Personalisation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Attentive.svg",
            "website": "https://www.attentivemobile.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Amplitude": {
            "name": "Amplitude",
            "description": "Amplitude is a web and mobile analytics solution with cross-platform user journey tracking, user behavior analysis and segmentation capabilities.",
            "slug": "amplitude",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amplitude.svg",
            "website": "https://amplitude.com",
            "pricing": [
                "freemium",
                "poa",
                "recurring"
            ],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        },
        "HTTP/3": {
            "name": "HTTP/3",
            "description": "HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.",
            "slug": "http-3",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "HTTP3.svg",
            "website": "https://httpwg.org/",
            "pricing": [],
            "cpe": null
        },
        "DocuSign": {
            "name": "DocuSign",
            "description": "DocuSign allows organisations to manage electronic agreements.",
            "slug": "docusign",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "DocuSign.svg",
            "website": "https://www.docusign.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        }
    }
}
WPT test run for https://www.napoleon.com/en/ca/corporate/welcome

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_3Y_4 Detected technologies:

{
    "detected": {
        "Ecommerce": "Cart Functionality",
        "CMS": "Drupal 10",
        "Webmail": "Apple iCloud Mail",
        "Programming languages": "PHP",
        "Video players": "Vimeo",
        "Caching": "Varnish",
        "PaaS": "Amazon Web Services,Acquia Cloud Platform",
        "JavaScript frameworks": "styled-components 5.0.0,React",
        "Development": "styled-components 5.0.0",
        "Shopify apps": "Shopify Buy Button",
        "Analytics": "TikTok Pixel,Hotjar,Google Analytics,Facebook Pixel 2.9.226",
        "JavaScript libraries": "jQuery UI 1.13.2,jQuery 3.7.1,core-js 3.1.3,Preact,Modernizr",
        "Digital asset management": "Salsify",
        "Advertising": "theTradeDesk",
        "Marketing automation": "Klaviyo",
        "Tag managers": "Google Tag Manager",
        "Font scripts": "Font Awesome",
        "Security": "Cloudflare Bot Management",
        "CDN": "Cloudflare",
        "Content curation": "Bazaarvoice Curation",
        "Segmentation": "Adobe Audience Manager",
        "Widgets": "AddToAny",
        "Miscellaneous": "PWA,Open Graph,DocuSign"
    },
    "detected_apps": {
        "Cart Functionality": "",
        "Drupal": "10",
        "Apple iCloud Mail": "",
        "PHP": "",
        "Vimeo": "",
        "Varnish": "",
        "Amazon Web Services": "",
        "styled-components": "5.0.0",
        "React": "",
        "Shopify Buy Button": "",
        "Acquia Cloud Platform": "",
        "TikTok Pixel": "",
        "jQuery UI": "1.13.2",
        "jQuery": "3.7.1",
        "core-js": "3.1.3",
        "Salsify": "",
        "Preact": "",
        "theTradeDesk": "",
        "Modernizr": "",
        "Klaviyo": "",
        "Hotjar": "",
        "Google Tag Manager": "",
        "Google Analytics": "",
        "Font Awesome": "",
        "Facebook Pixel": "2.9.226",
        "Cloudflare Bot Management": "",
        "Cloudflare": "",
        "Bazaarvoice Curation": "",
        "Adobe Audience Manager": "",
        "AddToAny": "",
        "PWA": "",
        "Open Graph": "",
        "DocuSign": ""
    },
    "detected_technologies": {
        "Cart Functionality": {
            "name": "Cart Functionality",
            "description": "Websites that have a shopping cart or checkout page, either using a known ecommerce platform or a custom solution.",
            "slug": "cart-functionality",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Cart-generic.svg",
            "website": "https://www.wappalyzer.com/technologies/ecommerce/cart-functionality",
            "pricing": [],
            "cpe": null
        },
        "Drupal": {
            "name": "Drupal",
            "description": "Drupal is a free and open-source web content management framework.",
            "slug": "drupal",
            "categories": [
                {
                    "id": 1,
                    "slug": "cms",
                    "description": "Platforms used to create, manage, and modify content on a website without needing specialized technical knowledge",
                    "groups": [
                        3
                    ],
                    "name": "CMS",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "10",
            "icon": "Drupal.svg",
            "website": "https://www.drupal.org/",
            "pricing": [],
            "cpe": "cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:*"
        },
        "Apple iCloud Mail": {
            "name": "Apple iCloud Mail",
            "description": "Apple iCloud Mail is a webmail service provided by Apple, Inc.",
            "slug": "apple-icloud-mail",
            "categories": [
                {
                    "id": 30,
                    "slug": "webmail",
                    "description": "Systems that allow users to send and receive emails through a browser",
                    "groups": [
                        4
                    ],
                    "name": "Webmail",
                    "priority": 2
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Apple.svg",
            "website": "https://www.apple.com/icloud/",
            "pricing": [],
            "cpe": null
        },
        "PHP": {
            "name": "PHP",
            "description": "PHP is a general-purpose scripting language used for web development.",
            "slug": "php",
            "categories": [
                {
                    "id": 27,
                    "slug": "programming-languages",
                    "description": "Build website functionalities and backend services",
                    "groups": [
                        9
                    ],
                    "name": "Programming languages",
                    "priority": 5
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PHP.svg",
            "website": "https://php.net",
            "pricing": [],
            "cpe": "cpe:2.3:a:php:php:*:*:*:*:*:*:*:*"
        },
        "Vimeo": {
            "name": "Vimeo",
            "description": "Vimeo is a video hosting, sharing and services platform. Vimeo operation an ad-free basis by providing subscription plans.",
            "slug": "vimeo",
            "categories": [
                {
                    "id": 14,
                    "slug": "video-players",
                    "description": "Tools that embed videos on websites",
                    "groups": [
                        10
                    ],
                    "name": "Video players",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Vimeo.svg",
            "website": "https://vimeo.com",
            "pricing": [],
            "cpe": null
        },
        "Varnish": {
            "name": "Varnish",
            "description": "Varnish is a reverse caching proxy.",
            "slug": "varnish",
            "categories": [
                {
                    "id": 23,
                    "slug": "caching",
                    "description": "Technologies that store frequently accessed data closer to the user to improve page load times",
                    "groups": [
                        7
                    ],
                    "name": "Caching",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Varnish.svg",
            "website": "https://www.varnish-cache.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:varnish-software:varnish_cache:*:*:*:*:*:*:*:*"
        },
        "Amazon Web Services": {
            "name": "Amazon Web Services",
            "description": "Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.",
            "slug": "amazon-web-services",
            "categories": [
                {
                    "id": 62,
                    "slug": "paas",
                    "description": "Provides a platform for software development",
                    "groups": [
                        7
                    ],
                    "name": "PaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amazon Web Services.svg",
            "website": "https://aws.amazon.com/",
            "pricing": [],
            "cpe": null
        },
        "styled-components": {
            "name": "styled-components",
            "description": "Styled components is a CSS-in-JS styling framework that uses tagged template literals in JavaScript.",
            "slug": "styled-components",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                },
                {
                    "id": 47,
                    "slug": "development",
                    "description": "Tools that assist in building and debugging websites and applications",
                    "groups": [
                        9
                    ],
                    "name": "Development",
                    "priority": 2
                }
            ],
            "confidence": 100,
            "version": "5.0.0",
            "icon": "styled-components.svg",
            "website": "https://styled-components.com",
            "pricing": [],
            "cpe": null
        },
        "React": {
            "name": "React",
            "description": "React is an open-source JavaScript library for building user interfaces or UI components.",
            "slug": "react",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "React.svg",
            "website": "https://reactjs.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:facebook:react:*:*:*:*:*:*:*:*"
        },
        "Shopify Buy Button": {
            "name": "Shopify Buy Button",
            "description": "Shopify Buy Button is an app from Shopify which allows merchant to embed buy functionality for any product or collection into another website or blog.",
            "slug": "shopify-buy-button",
            "categories": [
                {
                    "id": 100,
                    "slug": "shopify-apps",
                    "description": "Extend the functionality of Shopify stores",
                    "groups": [
                        15
                    ],
                    "name": "Shopify apps",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://apps.shopify.com/buy-button",
            "pricing": [
                "freemium"
            ],
            "cpe": null
        },
        "Acquia Cloud Platform": {
            "name": "Acquia Cloud Platform",
            "description": "Acquia Cloud Platform is a Drupal-tuned application lifecycle management suite with an infrastructure to support Drupal deployment workflow processes.",
            "slug": "acquia-cloud-platform",
            "categories": [
                {
                    "id": 62,
                    "slug": "paas",
                    "description": "Provides a platform for software development",
                    "groups": [
                        7
                    ],
                    "name": "PaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "acquia-cloud.png",
            "website": "https://www.acquia.com/products/drupal-cloud/cloud-platform",
            "pricing": [],
            "cpe": null
        },
        "TikTok Pixel": {
            "name": "TikTok Pixel",
            "description": null,
            "slug": "tiktok-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "TikTok.svg",
            "website": "https://ads.tiktok.com",
            "pricing": [],
            "cpe": null
        },
        "jQuery UI": {
            "name": "jQuery UI",
            "description": "jQuery UI is a collection of GUI widgets, animated visual effects, and themes implemented with jQuery, Cascading Style Sheets, and HTML.",
            "slug": "jquery-ui",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "1.13.2",
            "icon": "jQuery UI.svg",
            "website": "https://jqueryui.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery_ui:*:*:*:*:*:*:*:*"
        },
        "jQuery": {
            "name": "jQuery",
            "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
            "slug": "jquery",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.7.1",
            "icon": "jQuery.svg",
            "website": "https://jquery.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*"
        },
        "core-js": {
            "name": "core-js",
            "description": "core-js is a modular standard library for JavaScript, with polyfills for cutting-edge ECMAScript features.",
            "slug": "core-js",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.1.3",
            "icon": "core-js.png",
            "website": "https://github.com/zloirock/core-js",
            "pricing": [],
            "cpe": null
        },
        "Salsify": {
            "name": "Salsify",
            "description": "Salsify is a product experience management platform which connects digital asset management, content syndication, and digital catalog capabilities.",
            "slug": "salsify",
            "categories": [
                {
                    "id": 95,
                    "slug": "digital-asset-management",
                    "description": "Systems that store and manage media files",
                    "groups": [
                        10
                    ],
                    "name": "Digital asset management",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Salsify.svg",
            "website": "https://www.salsify.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Preact": {
            "name": "Preact",
            "description": "Preact is a JavaScript library that describes itself as a fast 3kB alternative to React with the same ES6 API.",
            "slug": "preact",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Preact.svg",
            "website": "https://preactjs.com",
            "pricing": [],
            "cpe": null
        },
        "theTradeDesk": {
            "name": "theTradeDesk",
            "description": "theTradeDesk is an technology company that markets a software platform used by digital ad buyers to purchase data-driven digital advertising campaigns across various ad formats and devices.",
            "slug": "thetradedesk",
            "categories": [
                {
                    "id": 36,
                    "slug": "advertising",
                    "description": "Platforms that display ads on websites",
                    "groups": [
                        2
                    ],
                    "name": "Advertising",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "theTradeDesk.svg",
            "website": "https://www.thetradedesk.com",
            "pricing": [
                "payg"
            ],
            "cpe": null
        },
        "Modernizr": {
            "name": "Modernizr",
            "description": "Modernizr is a JavaScript library that detects the features available in a user's browser.",
            "slug": "modernizr",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Modernizr.svg",
            "website": "https://modernizr.com",
            "pricing": [],
            "cpe": null
        },
        "Klaviyo": {
            "name": "Klaviyo",
            "description": "Klaviyo is an email and SMS marketing platform for online businesses.",
            "slug": "klaviyo",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Klaviyo.svg",
            "website": "https://www.klaviyo.com/",
            "pricing": [],
            "cpe": null
        },
        "Hotjar": {
            "name": "Hotjar",
            "description": "Hotjar is a suite of analytic tools to assist in the gathering of qualitative data, providing feedback through tools such as heatmaps, session recordings, and surveys.",
            "slug": "hotjar",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Hotjar.svg",
            "website": "https://www.hotjar.com",
            "pricing": [
                "freemium",
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Google Tag Manager": {
            "name": "Google Tag Manager",
            "description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update measurement codes and related code fragments collectively known as tags on your website or mobile app.",
            "slug": "google-tag-manager",
            "categories": [
                {
                    "id": 42,
                    "slug": "tag-managers",
                    "description": "Tools that allow the addition of scripts and tracking tools to websites",
                    "groups": [
                        8
                    ],
                    "name": "Tag managers",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Tag Manager.svg",
            "website": "https://www.google.com/tagmanager",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "Font Awesome": {
            "name": "Font Awesome",
            "description": "Font Awesome is a font and icon toolkit based on CSS and Less.",
            "slug": "font-awesome",
            "categories": [
                {
                    "id": 17,
                    "slug": "font-scripts",
                    "description": "Technologies that control how fonts are displayed on a webpage",
                    "groups": [
                        9
                    ],
                    "name": "Font scripts",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Font Awesome.svg",
            "website": "https://fontawesome.com/",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "Facebook Pixel": {
            "name": "Facebook Pixel",
            "description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
            "slug": "facebook-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "2.9.226",
            "icon": "Facebook.svg",
            "website": "https://facebook.com",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare Bot Management": {
            "name": "Cloudflare Bot Management",
            "description": "Cloudflare bot management solution identifies and mitigates automated traffic to protect websites from bad bots.",
            "slug": "cloudflare-bot-management",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com/en-gb/products/bot-management/",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Bazaarvoice Curation": {
            "name": "Bazaarvoice Curation",
            "description": "Bazaarvoice Curation is a content curation service Bazaarvoice provides post it's acquisition of Curalate.",
            "slug": "bazaarvoice-curation",
            "categories": [
                {
                    "id": 96,
                    "slug": "content-curation",
                    "description": "Systems that organize content from multiple sources",
                    "groups": [
                        2,
                        18
                    ],
                    "name": "Content curation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Bazaarvoice.png",
            "website": "https://www.bazaarvoice.com/products/visual-and-social-content/",
            "pricing": [
                "high",
                "recurring"
            ],
            "cpe": null
        },
        "Adobe Audience Manager": {
            "name": "Adobe Audience Manager",
            "description": "Adobe Audience Manager is a versatile audience data management platform.",
            "slug": "adobe-audience-manager",
            "categories": [
                {
                    "id": 86,
                    "slug": "segmentation",
                    "description": "Tools that group users based on behavior",
                    "groups": [
                        2
                    ],
                    "name": "Segmentation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Adobe.svg",
            "website": "https://business.adobe.com/products/audience-manager/adobe-audience-manager.html",
            "pricing": [
                "high",
                "recurring"
            ],
            "cpe": null
        },
        "AddToAny": {
            "name": "AddToAny",
            "description": "AddToAny is a universal sharing platform that can be integrated into a website by use of a web widget or plugin.",
            "slug": "addtoany",
            "categories": [
                {
                    "id": 5,
                    "slug": "widgets",
                    "description": "Small, self-contained applications embedded into a webpage",
                    "groups": [
                        6
                    ],
                    "name": "Widgets",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "AddToAny.svg",
            "website": "https://www.addtoany.com",
            "pricing": [],
            "cpe": null
        },
        "PWA": {
            "name": "PWA",
            "description": "Progressive Web Apps (PWAs) are web apps built and enhanced with modern APIs to deliver enhanced capabilities, reliability, and installability while reaching anyone, anywhere, on any device, all with a single codebase.",
            "slug": "pwa",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PWA.svg",
            "website": "https://web.dev/progressive-web-apps/",
            "pricing": [],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        },
        "DocuSign": {
            "name": "DocuSign",
            "description": "DocuSign allows organisations to manage electronic agreements.",
            "slug": "docusign",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "DocuSign.svg",
            "website": "https://www.docusign.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        }
    }
}
WPT test run for https://alfatah.pk/

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_KY_5 Detected technologies:

{
    "detected": {
        "Ecommerce": "Cart Functionality,Shopify",
        "CMS": "Shopify",
        "Maps": "Leaflet 1.9.4",
        "UI frameworks": "Bootstrap",
        "JavaScript frameworks": "Vue.js,React 18.2.0,GSAP",
        "Shopify apps": "MinMaxify,Shopify Buy Button",
        "PaaS": "Amazon Web Services",
        "JavaScript libraries": "SweetAlert2,MobX,Lodash 4.17.21,core-js 3.35.1,SweetAlert,jQuery 3.7.1",
        "Marketing automation": "PushOwl",
        "Comment systems": "Livefyre 1.9.4",
        "Performance": "Priority Hints",
        "Font scripts": "Font Awesome 5.15.4",
        "CDN": "Unpkg,jsDelivr,cdnjs,Cloudflare",
        "Security": "HSTS",
        "Analytics": "Google Analytics,Facebook Pixel 2.9.226",
        "Miscellaneous": "Webpack,PWA,Open Graph,HTTP/3"
    },
    "detected_apps": {
        "Cart Functionality": "",
        "Shopify": "",
        "Leaflet": "1.9.4",
        "Bootstrap": "",
        "Vue.js": "",
        "React": "18.2.0",
        "MinMaxify": "",
        "GSAP": "",
        "Shopify Buy Button": "",
        "Amazon Web Services": "",
        "SweetAlert2": "",
        "PushOwl": "",
        "MobX": "",
        "Lodash": "4.17.21",
        "Livefyre": "1.9.4",
        "core-js": "3.35.1",
        "Priority Hints": "",
        "Font Awesome": "5.15.4",
        "Unpkg": "",
        "SweetAlert": "",
        "jsDelivr": "",
        "jQuery": "3.7.1",
        "HSTS": "",
        "Google Analytics": "",
        "Facebook Pixel": "2.9.226",
        "cdnjs": "",
        "Cloudflare": "",
        "Webpack": "",
        "PWA": "",
        "Open Graph": "",
        "HTTP/3": ""
    },
    "detected_technologies": {
        "Cart Functionality": {
            "name": "Cart Functionality",
            "description": "Websites that have a shopping cart or checkout page, either using a known ecommerce platform or a custom solution.",
            "slug": "cart-functionality",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Cart-generic.svg",
            "website": "https://www.wappalyzer.com/technologies/ecommerce/cart-functionality",
            "pricing": [],
            "cpe": null
        },
        "Shopify": {
            "name": "Shopify",
            "description": "Shopify is a subscription-based software that allows anyone to set up an online store and sell their products. Shopify store owners can also sell in physical locations using Shopify POS, a point-of-sale app and accompanying hardware.",
            "slug": "shopify",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                },
                {
                    "id": 1,
                    "slug": "cms",
                    "description": "Platforms used to create, manage, and modify content on a website without needing specialized technical knowledge",
                    "groups": [
                        3
                    ],
                    "name": "CMS",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://shopify.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Leaflet": {
            "name": "Leaflet",
            "description": "Leaflet is the open-source JavaScript library for mobile-friendly interactive maps.",
            "slug": "leaflet",
            "categories": [
                {
                    "id": 35,
                    "slug": "maps",
                    "description": "Technologies that embed maps into websites",
                    "groups": [
                        17
                    ],
                    "name": "Maps",
                    "priority": 6
                }
            ],
            "confidence": 100,
            "version": "1.9.4",
            "icon": "Leaflet.png",
            "website": "https://leafletjs.com",
            "pricing": [],
            "cpe": null
        },
        "Bootstrap": {
            "name": "Bootstrap",
            "description": "Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development. It contains CSS and JavaScript-based design templates for typography, forms, buttons, navigation, and other interface components.",
            "slug": "bootstrap",
            "categories": [
                {
                    "id": 66,
                    "slug": "ui-frameworks",
                    "description": "Provide pre-built components to build user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "UI frameworks",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Bootstrap.svg",
            "website": "https://getbootstrap.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:getbootstrap:bootstrap:*:*:*:*:*:*:*:*"
        },
        "Vue.js": {
            "name": "Vue.js",
            "description": "Vue.js is an open-source model–view–viewmodel JavaScript framework for building user interfaces and single-page applications.",
            "slug": "vue-js",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "vue.svg",
            "website": "https://vuejs.org",
            "pricing": [],
            "cpe": null
        },
        "React": {
            "name": "React",
            "description": "React is an open-source JavaScript library for building user interfaces or UI components.",
            "slug": "react",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "18.2.0",
            "icon": "React.svg",
            "website": "https://reactjs.org",
            "pricing": [],
            "cpe": "cpe:2.3:a:facebook:react:*:*:*:*:*:*:*:*"
        },
        "MinMaxify": {
            "name": "MinMaxify",
            "description": "MinMaxify is an app that allows Shopify store owners to set minimum and maximum values for customer orders built by Intillium.",
            "slug": "minmaxify",
            "categories": [
                {
                    "id": 100,
                    "slug": "shopify-apps",
                    "description": "Extend the functionality of Shopify stores",
                    "groups": [
                        15
                    ],
                    "name": "Shopify apps",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "MinMaxify.png",
            "website": "https://apps.shopify.com/order-limits-minmaxify",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "GSAP": {
            "name": "GSAP",
            "description": "GSAP is an animation library that allows you to create animations with JavaScript.",
            "slug": "gsap",
            "categories": [
                {
                    "id": 12,
                    "slug": "javascript-frameworks",
                    "description": "Software used for building dynamic web applications and user interfaces",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript frameworks",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "TweenMax.png",
            "website": "https://greensock.com/gsap",
            "pricing": [],
            "cpe": null
        },
        "Shopify Buy Button": {
            "name": "Shopify Buy Button",
            "description": "Shopify Buy Button is an app from Shopify which allows merchant to embed buy functionality for any product or collection into another website or blog.",
            "slug": "shopify-buy-button",
            "categories": [
                {
                    "id": 100,
                    "slug": "shopify-apps",
                    "description": "Extend the functionality of Shopify stores",
                    "groups": [
                        15
                    ],
                    "name": "Shopify apps",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://apps.shopify.com/buy-button",
            "pricing": [
                "freemium"
            ],
            "cpe": null
        },
        "Amazon Web Services": {
            "name": "Amazon Web Services",
            "description": "Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.",
            "slug": "amazon-web-services",
            "categories": [
                {
                    "id": 62,
                    "slug": "paas",
                    "description": "Provides a platform for software development",
                    "groups": [
                        7
                    ],
                    "name": "PaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amazon Web Services.svg",
            "website": "https://aws.amazon.com/",
            "pricing": [],
            "cpe": null
        },
        "SweetAlert2": {
            "name": "SweetAlert2",
            "description": "SweetAlert2 is a JavaScript library that provides customisable, visually appealing, and responsive alert and modal dialog boxes for web applications.",
            "slug": "sweetalert2",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "SweetAlert2.svg",
            "website": "https://sweetalert2.github.io/",
            "pricing": [],
            "cpe": null
        },
        "PushOwl": {
            "name": "PushOwl",
            "description": "PushOwl is a push notification platform for ecommerce stores.",
            "slug": "pushowl",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PushOwl.svg",
            "website": "https://pushowl.com",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "MobX": {
            "name": "MobX",
            "description": null,
            "slug": "mobx",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "MobX.svg",
            "website": "https://mobx.js.org",
            "pricing": [],
            "cpe": null
        },
        "Lodash": {
            "name": "Lodash",
            "description": "Lodash is a JavaScript library which provides utility functions for common programming tasks using the functional programming paradigm.",
            "slug": "lodash",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "4.17.21",
            "icon": "Lodash.svg",
            "website": "https://www.lodash.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:lodash:lodash:*:*:*:*:*:*:*:*"
        },
        "Livefyre": {
            "name": "Livefyre",
            "description": "Livefyre is a platform that integrates with the social web to boost social interaction.",
            "slug": "livefyre",
            "categories": [
                {
                    "id": 15,
                    "slug": "comment-systems",
                    "description": "Allow users to post and interact with comments on a website",
                    "groups": [
                        3,
                        18
                    ],
                    "name": "Comment systems",
                    "priority": 9
                }
            ],
            "confidence": 0,
            "version": "1.9.4",
            "icon": "Livefyre.png",
            "website": "https://livefyre.com",
            "pricing": [],
            "cpe": null
        },
        "core-js": {
            "name": "core-js",
            "description": "core-js is a modular standard library for JavaScript, with polyfills for cutting-edge ECMAScript features.",
            "slug": "core-js",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.35.1",
            "icon": "core-js.png",
            "website": "https://github.com/zloirock/core-js",
            "pricing": [],
            "cpe": null
        },
        "Priority Hints": {
            "name": "Priority Hints",
            "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.",
            "slug": "priority-hints",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Priority Hints.svg",
            "website": "https://wicg.github.io/priority-hints/",
            "pricing": [],
            "cpe": null
        },
        "Font Awesome": {
            "name": "Font Awesome",
            "description": "Font Awesome is a font and icon toolkit based on CSS and Less.",
            "slug": "font-awesome",
            "categories": [
                {
                    "id": 17,
                    "slug": "font-scripts",
                    "description": "Technologies that control how fonts are displayed on a webpage",
                    "groups": [
                        9
                    ],
                    "name": "Font scripts",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "5.15.4",
            "icon": "Font Awesome.svg",
            "website": "https://fontawesome.com/",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "Unpkg": {
            "name": "Unpkg",
            "description": "Unpkg is a content delivery network for everything on npm.",
            "slug": "unpkg",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Unpkg.png",
            "website": "https://unpkg.com",
            "pricing": [],
            "cpe": null
        },
        "SweetAlert": {
            "name": "SweetAlert",
            "description": "SweetAlert is a JavaScript library that provides alternative alert and modal dialog boxes for web applications, with customisable features, aiming to improve the user interface of the default browser dialogs.",
            "slug": "sweetalert",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "SweetAlert.png",
            "website": "https://sweetalert.js.org",
            "pricing": [],
            "cpe": null
        },
        "jsDelivr": {
            "name": "jsDelivr",
            "description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.",
            "slug": "jsdelivr",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "jsdelivr-icon.svg",
            "website": "https://www.jsdelivr.com/",
            "pricing": [],
            "cpe": null
        },
        "jQuery": {
            "name": "jQuery",
            "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
            "slug": "jquery",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.7.1",
            "icon": "jQuery.svg",
            "website": "https://jquery.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*"
        },
        "HSTS": {
            "name": "HSTS",
            "description": "HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.",
            "slug": "hsts",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://www.rfc-editor.org/rfc/rfc6797#section-6.1",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "Facebook Pixel": {
            "name": "Facebook Pixel",
            "description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
            "slug": "facebook-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "2.9.226",
            "icon": "Facebook.svg",
            "website": "https://facebook.com",
            "pricing": [],
            "cpe": null
        },
        "cdnjs": {
            "name": "cdnjs",
            "description": "cdnjs is a free distributed JS library delivery service.",
            "slug": "cdnjs",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "cdnjs.svg",
            "website": "https://cdnjs.com",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Webpack": {
            "name": "Webpack",
            "description": "Webpack is an open-source JavaScript module bundler.",
            "slug": "webpack",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Webpack.svg",
            "website": "https://webpack.js.org/",
            "pricing": [],
            "cpe": null
        },
        "PWA": {
            "name": "PWA",
            "description": "Progressive Web Apps (PWAs) are web apps built and enhanced with modern APIs to deliver enhanced capabilities, reliability, and installability while reaching anyone, anywhere, on any device, all with a single codebase.",
            "slug": "pwa",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PWA.svg",
            "website": "https://web.dev/progressive-web-apps/",
            "pricing": [],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        },
        "HTTP/3": {
            "name": "HTTP/3",
            "description": "HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.",
            "slug": "http-3",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "HTTP3.svg",
            "website": "https://httpwg.org/",
            "pricing": [],
            "cpe": null
        }
    }
}
WPT test run for https://www.poppys.com/

WPT test run results: http://webpagetest.httparchive.org/results.php?test=250826_TX_6 Detected technologies:

{
    "detected": {
        "Ecommerce": "Cart Functionality,Shopify",
        "CMS": "Shopify",
        "Search engines": "Doofinder",
        "Web frameworks": "Shopify Web Components",
        "Load balancers": "Amazon ALB",
        "PaaS": "Amazon Web Services",
        "Loyalty & rewards": "Rise.ai",
        "Referral marketing": "Rise.ai",
        "Photo galleries": "PhotoSwipe",
        "JavaScript libraries": "PhotoSwipe,core-js 3.37.0,Flickity,AOS,jQuery 1.9.1",
        "Performance": "Priority Hints",
        "Font scripts": "Google Font API,Font Awesome 4.6.3",
        "Security": "HSTS,Cloudflare Bot Management",
        "CDN": "Google Hosted Libraries,Cloudflare",
        "Analytics": "Google Analytics,Facebook Pixel 2.9.226,Dotdigital 4",
        "Hosting": "GoDaddy",
        "Marketing automation": "Dotdigital 4",
        "Miscellaneous": "Open Graph,HTTP/3"
    },
    "detected_apps": {
        "Cart Functionality": "",
        "Shopify": "",
        "Doofinder": "",
        "Shopify Web Components": "",
        "Amazon ALB": "",
        "Amazon Web Services": "",
        "Rise.ai": "",
        "PhotoSwipe": "",
        "core-js": "3.37.0",
        "Priority Hints": "",
        "Google Font API": "",
        "Font Awesome": "4.6.3",
        "Flickity": "",
        "AOS": "",
        "jQuery": "1.9.1",
        "HSTS": "",
        "Google Hosted Libraries": "",
        "Google Analytics": "",
        "GoDaddy": "",
        "Facebook Pixel": "2.9.226",
        "Dotdigital": "4",
        "Cloudflare Bot Management": "",
        "Cloudflare": "",
        "Open Graph": "",
        "HTTP/3": ""
    },
    "detected_technologies": {
        "Cart Functionality": {
            "name": "Cart Functionality",
            "description": "Websites that have a shopping cart or checkout page, either using a known ecommerce platform or a custom solution.",
            "slug": "cart-functionality",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Cart-generic.svg",
            "website": "https://www.wappalyzer.com/technologies/ecommerce/cart-functionality",
            "pricing": [],
            "cpe": null
        },
        "Shopify": {
            "name": "Shopify",
            "description": "Shopify is a subscription-based software that allows anyone to set up an online store and sell their products. Shopify store owners can also sell in physical locations using Shopify POS, a point-of-sale app and accompanying hardware.",
            "slug": "shopify",
            "categories": [
                {
                    "id": 6,
                    "slug": "ecommerce",
                    "description": "Platforms providing the infrastructure to sell products and services online, managing everything from product catalogs to payments",
                    "groups": [
                        1
                    ],
                    "name": "Ecommerce",
                    "priority": 1
                },
                {
                    "id": 1,
                    "slug": "cms",
                    "description": "Platforms used to create, manage, and modify content on a website without needing specialized technical knowledge",
                    "groups": [
                        3
                    ],
                    "name": "CMS",
                    "priority": 1
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://shopify.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Doofinder": {
            "name": "Doofinder",
            "description": "Doofinder is a search site solution that enables users to include advanced and smart search engine capabilities in their ecommerce website.",
            "slug": "doofinder",
            "categories": [
                {
                    "id": 29,
                    "slug": "search-engines",
                    "description": "Embedded on websites to allow users to find specific content",
                    "groups": [
                        3
                    ],
                    "name": "Search engines",
                    "priority": 4
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Doofinder.svg",
            "website": "https://www.doofinder.com",
            "pricing": [
                "freemium",
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Shopify Web Components": {
            "name": "Shopify Web Components",
            "description": "Storefront Web Components let you bring Shopify-powered commerce capabilities to any website.",
            "slug": "shopify-web-components",
            "categories": [
                {
                    "id": 18,
                    "slug": "web-frameworks",
                    "description": "Software that provides a structure for building web applications",
                    "groups": [
                        9
                    ],
                    "name": "Web frameworks",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Shopify.svg",
            "website": "https://shopify.dev/docs/api/storefront-web-components",
            "pricing": [],
            "cpe": null
        },
        "Amazon ALB": {
            "name": "Amazon ALB",
            "description": "Amazon Application Load Balancer (ALB) distributes incoming application traffic to increase availability and support content-based routing.",
            "slug": "amazon-alb",
            "categories": [
                {
                    "id": 65,
                    "slug": "load-balancers",
                    "description": "Distribute incoming traffic to multiple servers",
                    "groups": [
                        7
                    ],
                    "name": "Load balancers",
                    "priority": 7
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amazon ELB.svg",
            "website": "https://aws.amazon.com/elasticloadbalancing/",
            "pricing": [],
            "cpe": null
        },
        "Amazon Web Services": {
            "name": "Amazon Web Services",
            "description": "Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.",
            "slug": "amazon-web-services",
            "categories": [
                {
                    "id": 62,
                    "slug": "paas",
                    "description": "Provides a platform for software development",
                    "groups": [
                        7
                    ],
                    "name": "PaaS",
                    "priority": 8
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Amazon Web Services.svg",
            "website": "https://aws.amazon.com/",
            "pricing": [],
            "cpe": null
        },
        "Rise.ai": {
            "name": "Rise.ai",
            "description": "Rise.ai is a strategic re-engagement solution that provides brands and retailers with a unique currency of their own.",
            "slug": "rise-ai",
            "categories": [
                {
                    "id": 84,
                    "slug": "loyalty-rewards",
                    "description": "Programs that track user engagement",
                    "groups": [
                        1
                    ],
                    "name": "Loyalty & rewards",
                    "priority": 9
                },
                {
                    "id": 94,
                    "slug": "referral-marketing",
                    "description": "Programs that incentivize users to promote a website",
                    "groups": [
                        2,
                        1
                    ],
                    "name": "Referral marketing",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Rise.ai.svg",
            "website": "https://rise.ai",
            "pricing": [
                "payg",
                "recurring"
            ],
            "cpe": null
        },
        "PhotoSwipe": {
            "name": "PhotoSwipe",
            "description": "PhotoSwipe is an open-source gallery to support JavaScript-based image zooming.",
            "slug": "photoswipe",
            "categories": [
                {
                    "id": 7,
                    "slug": "photo-galleries",
                    "description": "Platforms used to display images on a website",
                    "groups": [
                        3,
                        10
                    ],
                    "name": "Photo galleries",
                    "priority": 1
                },
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "PhotoSwipe.png",
            "website": "https://photoswipe.com",
            "pricing": [],
            "cpe": null
        },
        "core-js": {
            "name": "core-js",
            "description": "core-js is a modular standard library for JavaScript, with polyfills for cutting-edge ECMAScript features.",
            "slug": "core-js",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "3.37.0",
            "icon": "core-js.png",
            "website": "https://github.com/zloirock/core-js",
            "pricing": [],
            "cpe": null
        },
        "Priority Hints": {
            "name": "Priority Hints",
            "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.",
            "slug": "priority-hints",
            "categories": [
                {
                    "id": 92,
                    "slug": "performance",
                    "description": "Tools that measure and optimize site speed",
                    "groups": [
                        7
                    ],
                    "name": "Performance",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Priority Hints.svg",
            "website": "https://wicg.github.io/priority-hints/",
            "pricing": [],
            "cpe": null
        },
        "Google Font API": {
            "name": "Google Font API",
            "description": "Google Font API is a web service that supports open-source font files that can be used on your web designs.",
            "slug": "google-font-api",
            "categories": [
                {
                    "id": 17,
                    "slug": "font-scripts",
                    "description": "Technologies that control how fonts are displayed on a webpage",
                    "groups": [
                        9
                    ],
                    "name": "Font scripts",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Font API.svg",
            "website": "https://google.com/fonts",
            "pricing": [],
            "cpe": null
        },
        "Font Awesome": {
            "name": "Font Awesome",
            "description": "Font Awesome is a font and icon toolkit based on CSS and Less.",
            "slug": "font-awesome",
            "categories": [
                {
                    "id": 17,
                    "slug": "font-scripts",
                    "description": "Technologies that control how fonts are displayed on a webpage",
                    "groups": [
                        9
                    ],
                    "name": "Font scripts",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "4.6.3",
            "icon": "Font Awesome.svg",
            "website": "https://fontawesome.com/",
            "pricing": [
                "low",
                "freemium",
                "recurring"
            ],
            "cpe": null
        },
        "Flickity": {
            "name": "Flickity",
            "description": "Flickity is a JavaScript slider library, built by David DeSandro of Metafizzy fame.",
            "slug": "flickity",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://flickity.metafizzy.co",
            "pricing": [],
            "cpe": null
        },
        "AOS": {
            "name": "AOS",
            "description": "JavaScript library to animate elements on your page as you scroll.",
            "slug": "aos",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "AOS.svg",
            "website": "https://michalsnik.github.io/aos/",
            "pricing": [],
            "cpe": null
        },
        "jQuery": {
            "name": "jQuery",
            "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
            "slug": "jquery",
            "categories": [
                {
                    "id": 59,
                    "slug": "javascript-libraries",
                    "description": "Collections of pre-written JavaScript code",
                    "groups": [
                        9
                    ],
                    "name": "JavaScript libraries",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "1.9.1",
            "icon": "jQuery.svg",
            "website": "https://jquery.com",
            "pricing": [],
            "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*"
        },
        "HSTS": {
            "name": "HSTS",
            "description": "HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.",
            "slug": "hsts",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "default.svg",
            "website": "https://www.rfc-editor.org/rfc/rfc6797#section-6.1",
            "pricing": [],
            "cpe": null
        },
        "Google Hosted Libraries": {
            "name": "Google Hosted Libraries",
            "description": "Google Hosted Libraries is a stable, reliable, high-speed, globally available content distribution network for the most popular, open-source JavaScript libraries.",
            "slug": "google-hosted-libraries",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Developers.svg",
            "website": "https://developers.google.com/speed/libraries",
            "pricing": [],
            "cpe": null
        },
        "Google Analytics": {
            "name": "Google Analytics",
            "description": "Google Analytics is a free web analytics service that tracks and reports website traffic.",
            "slug": "google-analytics",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Google Analytics.svg",
            "website": "https://google.com/analytics",
            "pricing": [],
            "cpe": null
        },
        "GoDaddy": {
            "name": "GoDaddy",
            "description": "GoDaddy is used as a web host and domain registrar.",
            "slug": "godaddy",
            "categories": [
                {
                    "id": 88,
                    "slug": "hosting",
                    "description": "Providers that offer server space for websites",
                    "groups": [
                        7
                    ],
                    "name": "Hosting",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "GoDaddy.svg",
            "website": "https://www.godaddy.com",
            "pricing": [
                "low",
                "recurring"
            ],
            "cpe": null
        },
        "Facebook Pixel": {
            "name": "Facebook Pixel",
            "description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
            "slug": "facebook-pixel",
            "categories": [
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "2.9.226",
            "icon": "Facebook.svg",
            "website": "https://facebook.com",
            "pricing": [],
            "cpe": null
        },
        "Dotdigital": {
            "name": "Dotdigital",
            "description": "Dotdigital is an all-in-one cloud-based customer engagement multichannel marketing platform.",
            "slug": "dotdigital",
            "categories": [
                {
                    "id": 32,
                    "slug": "marketing-automation",
                    "description": "Tools that streamline marketing activities",
                    "groups": [
                        2
                    ],
                    "name": "Marketing automation",
                    "priority": 9
                },
                {
                    "id": 10,
                    "slug": "analytics",
                    "description": "Tools that track user behavior and provide insights into website performance",
                    "groups": [
                        8
                    ],
                    "name": "Analytics",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "4",
            "icon": "Dotdigital.svg",
            "website": "https://dotdigital.com",
            "pricing": [
                "poa"
            ],
            "cpe": null
        },
        "Cloudflare Bot Management": {
            "name": "Cloudflare Bot Management",
            "description": "Cloudflare bot management solution identifies and mitigates automated traffic to protect websites from bad bots.",
            "slug": "cloudflare-bot-management",
            "categories": [
                {
                    "id": 16,
                    "slug": "security",
                    "description": "Technologies that protect websites from vulnerabilities and attacks",
                    "groups": [
                        11
                    ],
                    "name": "Security",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com/en-gb/products/bot-management/",
            "pricing": [],
            "cpe": null
        },
        "Cloudflare": {
            "name": "Cloudflare",
            "description": "Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.",
            "slug": "cloudflare",
            "categories": [
                {
                    "id": 31,
                    "slug": "cdn",
                    "description": "(Content Delivery Network) Distribute website content globally to improve load times for users",
                    "groups": [
                        7
                    ],
                    "name": "CDN",
                    "priority": 9
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "CloudFlare.svg",
            "website": "https://www.cloudflare.com",
            "pricing": [],
            "cpe": null
        },
        "Open Graph": {
            "name": "Open Graph",
            "description": "Open Graph is a protocol that is used to integrate any web page into the social graph.",
            "slug": "open-graph",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "Open Graph.png",
            "website": "https://ogp.me",
            "pricing": [],
            "cpe": null
        },
        "HTTP/3": {
            "name": "HTTP/3",
            "description": "HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.",
            "slug": "http-3",
            "categories": [
                {
                    "id": 19,
                    "slug": "miscellaneous",
                    "description": "Tools and technologies that don't fit into other categories",
                    "groups": [
                        6
                    ],
                    "name": "Miscellaneous",
                    "priority": 10
                }
            ],
            "confidence": 100,
            "version": "",
            "icon": "HTTP3.svg",
            "website": "https://httpwg.org/",
            "pricing": [],
            "cpe": null
        }
    }
}

github-actions[bot] avatar Aug 26 '25 23:08 github-actions[bot]