Skip to content
Eden Engine

Bulk WHOIS Lookup (up to 10 Domains)

omnial/whois-bulk

Given a comma-separated list of up to 10 domain names, returns each domain's WHOIS record (registrar, creation/expiration/last-updated dates, nameservers, registration status, country) in a single call. A domain with no WHOIS record on file (e.g. unregistered) returns a `whois_error` flag instead of a `whois` object for that one entry, while the rest of the batch still resolves normally.

activeper callv1
Provider
Web & Business Data Network
Category
domain-intelligence
Provider price
$0.075075 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": [
    "domains"
  ],
  "properties": {
    "domains": {
      "type": "string",
      "description": "comma list of up to 10 domains"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of entries in `items`; matches the number of domains requested."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'whois' 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",
                  "null"
                ],
                "description": "Two-letter country code, e.g. 'US'. Observed as null on one real domain (microsoft.com in the well-known-batch fixture) despite the rest of that domain's WHOIS record being fully populated -- do not assume this is always present."
              },
              "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 one of the requested domain names."
          },
          "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 entry captured; other values are not confirmed."
          }
        },
        "additionalProperties": true
      }
    }
  },
  "description": "The batch 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.075075
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