technologies

Type:
<boolean>

Default: true
It identifies technology behind target url, powered by .
  • CLI
  • JavaScript
  • Shell
  • Python
  • Ruby
const mql = require('@microlink/mql')

const { status, data } = await mql('https://microlink.io', {
  insights: { technologies: true }
})

mql.render(data)
A detected technology is defined by:
  • name (e.g., 'CloudFlare')
    The normalized name of the techonlogy.
  • confidence (e.g., 100)
    How sure technology is present on the site, scoring from 0 to 100.
  • logo (e.g., 'https://www.wappalyzer.com/images/icons/CloudFlare.svg')
    The technology logo as URL.
  • logo (e.g., 'http://www.cloudflare.com')
    The main website of the technology.
  • categories (e.g., ['PaaS', 'CDN'])
    A list of keywords identified with similar technologies.
The output can contain one or more technologies detected.
{
  "status": "success",
  "data": {
    "insights": {
      "technologies": [
        {
          "name": "CloudFlare",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/CloudFlare.svg",
          "url": "http://www.cloudflare.com",
          "categories": ["CDN"]
        },
        {
          "name": "Gatsby",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/Gatsby.svg",
          "url": "https://www.gatsbyjs.org/",
          "categories": ["Static site generator", "JavaScript frameworks"]
        },
        {
          "name": "Google Analytics",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/Google%20Analytics.svg",
          "url": "http://google.com/analytics",
          "categories": ["Analytics"]
        },
        {
          "name": "Now",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/zeit.svg",
          "url": "https://zeit.co/now",
          "categories": ["Web servers"]
        },
        {
          "name": "Polyfill",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/polyfill.svg",
          "url": "https://polyfill.io",
          "categories": ["JavaScript libraries"]
        },
        {
          "name": "React",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/React.png",
          "url": "https://reactjs.org",
          "categories": ["JavaScript frameworks"]
        },
        {
          "name": "Segment",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/Segment.png",
          "url": "https://segment.com",
          "categories": ["Analytics"]
        },
        {
          "name": "Stripe",
          "confidence": 100,
          "logo": "https://www.wappalyzer.com/images/icons/Stripe.png",
          "url": "http://stripe.com",
          "categories": ["Payment processors"]
        },
        {
          "name": "webpack",
          "confidence": 0,
          "logo": "https://www.wappalyzer.com/images/icons/webpack.svg",
          "url": "https://webpack.js.org/",
          "categories": ["Miscellaneous"]
        }
      ]
    }
  }
}
An example of techonologies detected over microlink.io.
OSZAR »