Skip to content
Eden Engine

Domain WHOIS & DNS Lookup

omnial/domain-info

Given a domain name, returns its WHOIS record (registrar, creation/expiration/last-updated dates, nameservers, registration status, country) and its DNS records (A, AAAA, MX, NS, TXT, CNAME). A domain with no WHOIS record on file (e.g. unregistered) returns a `whois_error` flag instead of a `whois` object, with empty DNS record arrays.

activeper callv1
Provider
Web & Business Data Network
Category
domain-intelligence
Provider price
$0.03003 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",
      "minLength": 1,
      "description": "The domain name to look up, e.g. 'google.com' (no protocol, no path)."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of entries in `items`; 1 on both fixtures observed."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "dns": {
            "type": "object",
            "properties": {
              "A": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "IPv4 addresses."
              },
              "MX": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Mail exchange records, e.g. '10 smtp.google.com'."
              },
              "NS": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Nameserver hostnames."
              },
              "TXT": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Raw TXT record strings (verification tokens, SPF, etc.)."
              },
              "AAAA": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "IPv6 addresses."
              },
              "CNAME": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Canonical name records; empty on both fixtures observed."
              }
            },
            "description": "DNS record sets. Every record type is an array; an empty array means no records of that type were found (observed on the unregistered-domain fixture, where every record type is empty).",
            "additionalProperties": true
          },
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'domain_info' on both fixtures."
          },
          "whois": {
            "type": "object",
            "properties": {
              "status": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "ICANN EPP status codes, each with a reference URL appended as text."
              },
              "country": {
                "type": "string",
                "description": "Two-letter country code, e.g. 'US'."
              },
              "registrar": {
                "type": "string"
              },
              "nameServers": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "updatedDate": {
                "type": "string",
                "description": "Date-time string, same format as creationDate."
              },
              "creationDate": {
                "type": "string",
                "description": "Date-time string, e.g. '1997-09-15 04:00:00+00:00'."
              },
              "expirationDate": {
                "type": "string",
                "description": "Date-time string, same format as creationDate."
              }
            },
            "description": "Present only when the domain has a WHOIS record on file (see the sibling `whois_error` field for the not-found case, which is mutually exclusive with this).",
            "additionalProperties": true
          },
          "domain": {
            "type": "string",
            "description": "Echoes the requested domain name."
          },
          "whois_error": {
            "type": "string",
            "description": "Present only when the domain has no WHOIS record on file, instead of `whois`. Observed as the literal string 'not_found' on the one such fixture captured; other values are not confirmed."
          }
        },
        "additionalProperties": true
      }
    }
  },
  "description": "The domain 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.03003
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 8, 2026