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 URL
Integration docshttps://x402.hexl.dev/v1/domain/riskExample 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
}