Skip to main content
GET
/
v3
/
tools
/
domaincheck
Get Domain Information
curl --request GET \
  --url https://api.ricardoneud.com/v3/tools/domaincheck \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Domain: <x-domain>'
{
  "domain": "ricardoneud.com",
  "ssl": {
    "status": "Valid",
    "validity": "4/15/2025, 10:19:22 PM to 7/14/2025, 10:19:21 PM",
    "expiry": "62 days left"
  },
  "safety": {
    "isSafe": true,
    "message": "Domain is safe"
  },
  "whois": {
    "isRegistered": true,
    "registrar": "Hosting Concepts B.V. d/b/a Registrar.eu",
    "creationDate": "11/22/2024, 8:17:10 AM",
    "expirationDate": "11/22/2026, 8:17:10 AM"
  },
  "dnssec": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Domain
string
required

The domain you want to check

Response

200 - application/json

Fields in the Response:

  • domain: The domain you queried.
  • ssl.status: Whether the SSL certificate is valid.
  • ssl.validity: The date range during which the SSL certificate is valid.
  • ssl.expiry: Time remaining until the certificate expires.
  • safety.isSafe: Indicates if the domain is considered safe.
  • safety.message: Additional info about domain safety.
  • whois.isRegistered: Whether the domain is currently registered.
  • whois.registrar: Name of the domain registrar.
  • whois.creationDate: When the domain was originally registered.
  • whois.expirationDate: When the domain registration will expire.
  • dnssec: Indicates if DNSSEC is enabled for the domain.
domain
string
required
ssl
object
required
safety
object
required
whois
object
required
dnssec
boolean
required
I