Domain Reputation
OperationalDNS checks, WHOIS lookups, and reputation scoring for any domain
API Overview
The Domain Reputation API gives you a complete picture of any domain's trustworthiness. It queries multiple DNS record types (A, MX, TXT, NS), performs WHOIS lookups to determine registration age and registrar details, verifies SSL certificate validity, and cross-references against threat intelligence feeds for phishing, malware, and spam associations. The composite reputation score helps you make automated trust decisions.
Threat Intelligence
Cross-references against phishing, malware, and spam feeds for real-time threat detection.
WHOIS Lookup
Returns domain age, registrar, and registration details to assess credibility.
SSL Verification
Checks certificate validity and days until expiry so you catch expired certs early.
Reputation Score 0–100
A single composite score aggregating all signals for easy automated decision-making.
terminal API Playground
Live Simulationimport requests
url = "https://api.picopayd.codefission.co.uk/domain/api/check"
headers = {
"Content-Type": "application/json",
"X-PAYMENT": "<402-payment-token>"
}
payload = {
"domain": "example.com"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json()) {
"domain": "example.com",
"reputationScore": 92,
"dns": {
"aRecord": true,
"mxRecord": true,
"hasSpf": true,
"hasDkim": true
},
"ssl": {
"valid": true,
"daysUntilExpiry": 120
},
"whois": {
"registeredYears": 15,
"registrar": "GoDaddy"
},
"threats": []
} Related Validation APIs
View all APIs arrow_forwardEmail Validator
$0.001 / call
Validate email addresses in real-time with comprehensive checks including syntax validation, MX record lookup, SMTP verification, and disposable email detection.
Phone Validator
$0.001 / call
Verify phone numbers worldwide with E.164 formatting, country and carrier detection, line type classification, and messaging platform availability checks.
IBAN & SWIFT Validator
$0.001 / call
Validate IBAN and SWIFT/BIC codes with checksum verification and bank detail lookup, ensuring accuracy before initiating international wire transfers.