Wappalyzer · Schema
Technology
A technology detected on a website by Wappalyzer, including its category classification and version information.
Technology DetectionTechnographicsWebsite AnalysisCMS DetectionFramework DetectionLead EnrichmentSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| slug | string | URL-friendly unique identifier for the technology. |
| name | string | Human-readable name of the technology. |
| cpe | string | Common Platform Enumeration (CPE) identifier for the technology. |
| versions | array | Detected version strings for the technology. |
| categories | array | Technology categories this technology belongs to. |
| trafficRank | integer | Relative traffic rank of the website. |
| confirmedAt | integer | Unix timestamp when the technology detection was confirmed. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.wappalyzer.com/schemas/technology",
"title": "Technology",
"description": "A technology detected on a website by Wappalyzer, including its category classification and version information.",
"type": "object",
"required": ["slug", "name"],
"properties": {
"slug": {
"type": "string",
"description": "URL-friendly unique identifier for the technology."
},
"name": {
"type": "string",
"description": "Human-readable name of the technology."
},
"cpe": {
"type": "string",
"description": "Common Platform Enumeration (CPE) identifier for the technology."
},
"versions": {
"type": "array",
"description": "Detected version strings for the technology.",
"items": {
"type": "string"
}
},
"categories": {
"type": "array",
"description": "Technology categories this technology belongs to.",
"items": {
"$ref": "#/definitions/Category"
}
},
"trafficRank": {
"type": "integer",
"description": "Relative traffic rank of the website."
},
"confirmedAt": {
"type": "integer",
"description": "Unix timestamp when the technology detection was confirmed."
}
},
"definitions": {
"Category": {
"type": "object",
"required": ["slug", "name"],
"properties": {
"id": {
"type": "integer",
"description": "Numeric identifier for the category."
},
"slug": {
"type": "string",
"description": "URL-friendly unique identifier for the category."
},
"name": {
"type": "string",
"description": "Human-readable name of the category."
}
}
}
}
}