Skip to content

Get Domain Information

This documentation helps you retrieve domain-related information for a given domain. The response contains domain status, SSL certificate details, WHOIS registration, and security information.

Further Reading: Retrieving Domain Information

To retrieve domain-specific information, make a request to the following API endpoint:

GET https://api-sb.ricardoneud.com/v1/tools/domaincheck

Request Headers:

HeaderTypeRequiredDescription
AuthorizationstringBearer token with a valid API key
X-DomainstringThe domain you want to check

Example Response

The response includes information about the domain’s SSL certificate, WHOIS data, DNSSEC status, and security assessment:

{
"domain": "ricardoneud.com",
"ssl": {
"status": "Valid",
"validity": "4/17/2025, 3:36:53 PM to 8/15/2025, 3:36:53 PM",
"expiry": "90 days left"
},
"safety": {
"isSafe": null,
"message": "Domain is not reachable"
},
"whois": {
"isRegistered": true,
"registrar": "Example Registrar",
"creationDate": "5/17/2024, 3:36:53 PM",
"expirationDate": "5/17/2026, 3:36:53 PM"
},
"dnssec": true
}

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.