Catalog/domain-typosquats

Domain

Domain typosquat variants API

Generate likely typo, keyboard-neighbor, homoglyph, and TLD-swap variants for a domain without performing live lookups.

Price$0.01per request
MethodGET
Route/v1/domain/typosquats
StatusLive
MIME typeapplication/json
Rate limit180/minute
Cache3600s public
domaintyposquatphishingbrandosint
API URLhttps://x402.hexl.dev/v1/domain/typosquats
Integration docs
Example request
{
  "domain": "example.com",
  "limit": 5
}
Example response
{
  "domain": "example.com",
  "count": 5,
  "variants": [
    {
      "domain": "exmple.com",
      "method": "label-variant"
    }
  ],
  "provider": "local-typosquat-generator"
}
Input schema
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "minLength": 1
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 200,
      "default": 50
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}