Wappalyzer API

Wappalyzer identifies technologies on websites. It detects content management systems, ecommerce platforms, JavaScript frameworks, analytics tools and much more. Wappalyzer is opensource publicly available and we utilize it’s opensource nature to provide our users with API. It is also good to note that we return icons for different technologies detected by wappalyzer.

To use the wappalyzer API you have to register and generate an api key and api secret. Optionally you can contact us to setup everything for you. Please note that the API we provided is not free but we offer API for a reasonable fee of only $15 a month you can be a patreon.

import requests
headers = {"X-Auth-Email":"youremail@something-here-re.com"}

# or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}

url="https://api.nmmapper.com/api/v1/wappalyzer/?domain=some-domain-here.com"
res = requests.get(url, headers=headers)
#
#

That is all you need and you will get you technology detected.