Catalog/domain-risk

Domain

Domain risk score API

Aggregate DNS, email-auth, liveness, and hostname heuristics into a lightweight domain trust score.

Price$0.01per request
MethodGET
Route/v1/domain/risk
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache300s public
domainriskdnsemail-authphishing
API URLhttps://x402.hexl.dev/v1/domain/risk
Integration docs
Example request
{
  "domain": "example.com"
}
Example response
{
  "domain": "example.com",
  "score": 10,
  "verdict": "low",
  "signals": [
    "domain_resolves",
    "email_policy_present"
  ],
  "provider": "domain-risk-local"
}
Input schema
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "minLength": 1
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}