Wappalyzer API identifies different technologies on websites
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.
1import requests
2headers= {"X-Auth-Email":"youremail@something-here-re.com"}
3
4 # or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
5headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}
6
7url="https://api.nmmapper.com/api/v1/wappalyzer/?domain=some-domain-here.com"
8res = requests.get(url, headers=headers)
9#
That is all you need and you will get you technology detected.