Skip to content
Eden Engine

Domain Registration Age & WHOIS Lookup (by Domain Name)

omnial/x402-domain-age-check

Given a domain name, returns its WHOIS registration creation date, age in days and years, registrar, and expiry date, plus a coarse risk indicator that flags recently-registered domains -- useful for screening a signup, sender, or link for fraud risk. A domain whose creation date can't be found in WHOIS data comes back with null age/registrar/expiry fields and a risk indicator of 'unknown', not an error.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.0486486 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain name to check (e.g., google.com)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "domain",
    "created_date",
    "age_days",
    "age_years",
    "registrar",
    "expiry_date",
    "is_new",
    "risk_indicator"
  ],
  "properties": {
    "note": {
      "type": "string",
      "description": "Present only when the lookup could not find a creation date in WHOIS data, explaining why the other fields are null. Absent on a successful lookup."
    },
    "domain": {
      "type": "string",
      "description": "The domain exactly as submitted, echoed back."
    },
    "is_new": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether the domain is considered newly registered. Observed null when the creation date could not be found."
    },
    "age_days": {
      "type": [
        "number",
        "null"
      ],
      "description": "Domain age in days as of the call. Observed null alongside a null created_date."
    },
    "age_years": {
      "type": [
        "number",
        "null"
      ],
      "description": "Domain age in whole years as of the call. Observed null alongside a null created_date."
    },
    "registrar": {
      "type": [
        "string",
        "null"
      ],
      "description": "The domain's registrar of record, e.g. 'MarkMonitor Inc.'. Observed null when the creation date could not be found."
    },
    "expiry_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "The domain's current registration expiry date. Observed null when the creation date could not be found."
    },
    "created_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Domain registration (WHOIS creation) date, e.g. '1997-09-15'. Observed null when the creation date could not be found in WHOIS data (see `note`)."
    },
    "risk_indicator": {
      "type": "string",
      "description": "A coarse risk label, e.g. 'low' for a long-established domain or 'unknown' when WHOIS data could not be found for it."
    }
  },
  "description": "The domain age lookup result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0486486
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026