{
  "ok": true,
  "service": "DNS Lookup API",
  "serviceName": "DNS Lookup API",
  "name": "DNS Lookup API",
  "endpoint": "https://tools.ipintel.ai/dns-lookup",
  "method": "POST",
  "x402": true,
  "price": "$0.001",
  "network": "eip155:8453",
  "input": {
    "bodyType": "json",
    "example": {
      "domain": "example.com",
      "types": [
        "A",
        "MX",
        "NS",
        "TXT"
      ]
    },
    "schema": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "domain": {
          "type": "string",
          "description": "Domain name to query, for example example.com"
        },
        "types": {
          "type": "array",
          "description": "Optional DNS record types to return",
          "items": {
            "type": "string",
            "enum": [
              "A",
              "AAAA",
              "MX",
              "NS",
              "TXT",
              "CAA",
              "SOA"
            ]
          }
        }
      },
      "required": [
        "domain"
      ]
    }
  },
  "description": "DNS Lookup API. Resolve domain DNS records and receive structured JSON with A, AAAA, MX, NS, TXT, CAA, and SOA records. Useful for agents, developers, domain diagnostics, email setup checks, DNS troubleshooting, and infrastructure investigation. Paid per call via x402.",
  "tags": [
    "dns-lookup",
    "domain-intelligence",
    "mx-records",
    "txt-records",
    "developer-tools"
  ]
}