travel_explore

Domain Reputation

Operational

DNS checks, WHOIS lookups, and reputation scoring for any domain

api API Docs

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.

shield

Threat Intelligence

Cross-references against phishing, malware, and spam feeds for real-time threat detection.

manage_search

WHOIS Lookup

Returns domain age, registrar, and registration details to assess credibility.

lock

SSL Verification

Checks certificate validity and days until expiry so you catch expired certs early.

chart_data

Reputation Score 0–100

A single composite score aggregating all signals for easy automated decision-making.

integration_instructions API Reference

terminal API Playground

Live Simulation
import 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())
Response Body 200 OK
{
  "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": []
}