Skip to content
Eden Engine

DNS Record Lookup (A, AAAA, MX, NS, TXT, SPF, DMARC)

omnial/x402-dns-lookup

Given a domain name, returns its A, AAAA, MX, NS, TXT, and CNAME DNS records, plus whether the domain publishes SPF and DMARC policies and the raw DMARC record string when one exists.

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 (e.g. example.com)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "An error code present only when the lookup failed (e.g. the domain does not resolve). Absent on a successful lookup."
    },
    "domain": {
      "type": "string",
      "description": "The domain looked up, echoed back."
    },
    "has_spf": {
      "type": "boolean",
      "description": "Whether an SPF policy was detected among the TXT records."
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message present only when the lookup failed. Absent on a successful lookup."
    },
    "a_records": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "IPv4 addresses from the domain's A records."
    },
    "has_dmarc": {
      "type": "boolean",
      "description": "Whether a DMARC policy record was detected."
    },
    "mx_records": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "exchange": {
            "type": "string",
            "description": "The mail server hostname."
          },
          "priority": {
            "type": "number"
          }
        },
        "additionalProperties": true
      },
      "description": "Mail exchange records, each with a priority and a target hostname."
    },
    "ns_records": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Nameserver hostnames for the domain."
    },
    "txt_records": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Raw TXT record strings -- domain-verification tokens, SPF policy text, and other free-text entries as published; not parsed into separate fields."
    },
    "aaaa_records": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "IPv6 addresses from the domain's AAAA records."
    },
    "dmarc_record": {
      "type": "string",
      "description": "The raw DMARC policy TXT record string when has_dmarc is true, e.g. 'v=DMARC1; p=reject; rua=mailto:...'. May include the domain owner's own published aggregate-report contact address as part of its public DNS policy. Shape when no DMARC record exists was not observed on either fixture captured."
    },
    "cname_records": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "CNAME record targets. Observed as an empty array on the one fixture captured (google.com has no CNAME at its apex) -- a populated shape was not observed."
    }
  },
  "description": "The DNS record set for the looked-up domain, as returned at routing.responseResultPath ($.output). A domain that does not resolve shapes to `{ code, message }` instead -- see verification.notes.",
  "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