{
  "ok": true,
  "service": "IPIntel.ai x402 Tools",
  "description": "Pay-per-call x402 tools for DNS lookup, domain health checks, reverse DNS, WHOIS lookup, JSON Schema validation, JWT decoding, and Base64 encoding/decoding.",
  "contact": "support@ipintel.ai",
  "network": "eip155:8453",
  "payment": {
    "protocol": "x402",
    "version": 2,
    "asset": "USDC",
    "network": "Base",
    "price": "$0.001",
    "payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8"
  },
  "discovery": {
    "openapi": "https://tools.ipintel.ai/openapi.json",
    "x402": "https://tools.ipintel.ai/.well-known/x402",
    "llms": "https://tools.ipintel.ai/llms.txt"
  },
  "tools": [
    {
      "path": "/dns-lookup",
      "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",
      "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"
      ],
      "example_body": {
        "domain": "example.com",
        "types": [
          "A",
          "MX",
          "NS",
          "TXT"
        ]
      }
    },
    {
      "path": "/reverse-dns",
      "service": "Reverse DNS Lookup API",
      "serviceName": "Reverse DNS Lookup API",
      "name": "Reverse DNS Lookup API",
      "endpoint": "https://tools.ipintel.ai/reverse-dns",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "Reverse DNS Lookup API. Look up PTR records for an IP address and receive reverse DNS hostname data in structured JSON. Useful for agents, developers, IP enrichment, network diagnostics, infrastructure investigation, abuse analysis, and security workflows. Paid per call via x402.",
      "tags": [
        "reverse-dns",
        "ptr-record",
        "ip-lookup",
        "dns",
        "developer-tools"
      ],
      "example_body": {
        "ip": "8.8.8.8"
      }
    },
    {
      "path": "/domain-health",
      "service": "Domain Health Check API",
      "serviceName": "Domain Health Check API",
      "name": "Domain Health Check API",
      "endpoint": "https://tools.ipintel.ai/domain-health",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "Domain Health Check API. Check domain DNS, MX, SPF, DMARC, and email configuration health and receive a structured JSON score with issues and recommendations. Useful for agents, developers, email deliverability checks, domain diagnostics, infrastructure investigation, and security workflows. Paid per call via x402.",
      "tags": [
        "domain-health",
        "dns-lookup",
        "spf",
        "dmarc",
        "email-security"
      ],
      "example_body": {
        "domain": "ipintel.ai"
      }
    },
    {
      "path": "/whois-lookup",
      "service": "WHOIS Lookup API",
      "serviceName": "WHOIS Lookup API",
      "name": "WHOIS Lookup API",
      "endpoint": "https://tools.ipintel.ai/whois-lookup",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "WHOIS Lookup API. Retrieve domain registration data including registrar, WHOIS server, creation date, expiration date, updated date, nameservers, domain status, and privacy/redaction signals. Useful for agents, developers, domain intelligence, expiry checks, registrar lookup, ownership investigation, and security workflows. Paid per call via x402.",
      "tags": [
        "whois",
        "domain-lookup",
        "domain-intelligence",
        "registrar",
        "developer-tools"
      ],
      "example_body": {
        "domain": "example.com"
      }
    },
    {
      "path": "/json-schema-validator",
      "service": "JSON Schema Validator API",
      "serviceName": "JSON Schema Validator API",
      "name": "JSON Schema Validator API",
      "endpoint": "https://tools.ipintel.ai/json-schema-validator",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "JSON Schema Validator API. Validate JSON data against a JSON Schema and receive structured valid/invalid results with detailed validation errors. Supports common JSON Schema features including type, required, properties, additionalProperties, enum, const, items, string lengths, patterns, and numeric bounds. Useful for agents, developers, API testing, structured output validation, schema checks, and automation workflows. Paid per call via x402.",
      "tags": [
        "json-schema",
        "json-validator",
        "schema-validation",
        "structured-output",
        "developer-tools",
        "api-testing",
        "automation"
      ],
      "example_body": {
        "schema": {
          "type": "object",
          "required": [
            "name"
          ],
          "properties": {
            "name": {
              "type": "string"
            }
          }
        },
        "data": {
          "name": "Niki"
        }
      }
    },
    {
      "path": "/jwt-decode",
      "service": "JWT Decode API",
      "serviceName": "JWT Decode API",
      "name": "JWT Decode API",
      "endpoint": "https://tools.ipintel.ai/jwt-decode",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "JWT Decode API. Decode JWT header and payload without verifying the signature. Returns algorithm, claims, expiration, issued-at, not-before timestamps, and token validity hints. Useful for agents, developers, authentication debugging, token inspection, API testing, and security workflows. Paid per call via x402.",
      "tags": [
        "jwt",
        "jwt-decode",
        "token-inspection",
        "auth-debugging",
        "developer-tools",
        "api-testing",
        "security"
      ],
      "example_body": {
        "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMifQ.signature"
      }
    },
    {
      "path": "/base64-encode",
      "service": "Base64 Encode API",
      "serviceName": "Base64 Encode API",
      "name": "Base64 Encode API",
      "endpoint": "https://tools.ipintel.ai/base64-encode",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "Base64 Encode API. Encode plain text into standard or URL-safe Base64 and return structured JSON with input length and encoded output. Useful for agents, developers, API testing, token workflows, data transformation, encoding workflows, and automation tasks. Paid per call via x402.",
      "tags": [
        "base64",
        "base64-encode",
        "encoding",
        "url-safe-base64",
        "data-transform",
        "developer-tools",
        "api-testing"
      ],
      "example_body": {
        "value": "hello",
        "url_safe": false
      }
    },
    {
      "path": "/base64-decode",
      "service": "Base64 Decode API",
      "serviceName": "Base64 Decode API",
      "name": "Base64 Decode API",
      "endpoint": "https://tools.ipintel.ai/base64-decode",
      "method": "POST",
      "x402": true,
      "price": "$0.001",
      "description": "Base64 Decode API. Decode standard or URL-safe Base64 and return UTF-8 text when possible, hex output, validity, and output length. Useful for agents, developers, token inspection, API debugging, decoding workflows, data transformation, and automation tasks. Paid per call via x402.",
      "tags": [
        "base64",
        "base64-decode",
        "decoding",
        "url-safe-base64",
        "token-inspection",
        "data-transform",
        "developer-tools",
        "api-testing"
      ],
      "example_body": {
        "value": "aGVsbG8=",
        "url_safe": false
      }
    }
  ]
}