domain_analytics_technologies_domains_by_html_terms
Identify domains using specific HTML technologies by searching for HTML terms, enabling technology stack analysis and competitive research.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| intersection_mode | No | Intersection mode | |
| limit | No | Maximum number of results to return | |
| offset | No | Offset for pagination | |
| terms | Yes | HTML terms to search for |
Input Schema (JSON Schema)
{
"properties": {
"intersection_mode": {
"description": "Intersection mode",
"enum": [
"and",
"or"
],
"type": "string"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"terms": {
"description": "HTML terms to search for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"terms"
],
"type": "object"
}