# agentutility — paid x402 endpoints for autonomous agents

> agentutility — paid x402 endpoints for autonomous agents is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

## Facts

- Endpoint: POST https://x402.agentutility.ai/domain-threat-report
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-threat-report-2637dea3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GbVubihmrED8lnLLaJIbW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability domain-threat-report-2637dea3 -d '<json body>'
```

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain to investigate, e.g. 'example.com'. Max 253 chars; bare hostnames only (scheme/path are stripped if present)."
      }
     },
     "required": [
      "domain"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string"
      },
      "registration": {
       "type": "object",
       "properties": {
        "registered_date": {
         "type": "string"
        },
        "age_days": {
         "type": "integer"
        },
        "flags": {
         "type": "array"
        }
       }
      },
      "dns": {
       "type": "object",
       "properties": {
        "flat": {
         "type": "object",
         "properties": {
          "a": {
           "type": "array",
           "items": {
            "type": "string"
           }
          },
          "mx": {
           "type": "array"
          }
         }
        }
       }
      },
      "tls": {
       "type": "object",
       "properties": {
        "issuer_common_name": {
         "type": "string"
        },
        "days_until_expiry": {
         "type": "integer"
        }
       }
      },
      "email_auth": {
       "type": "object",
       "properties": {
        "score": {
         "type": "integer"
        },
        "grade": {
         "type": "string"
        },
        "dmarc": {
         "type": "object",
         "properties": {
          "exists": {
           "type": "boolean"
          }
         }
        }
       }
      },
      "subdomains": {
       "type": "object",
       "properties": {
        "subdomain_count": {
         "type": "integer"
        },
        "subdomains": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "hostname
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dns": {
   "flat": {
    "a": [
     "93.184.216.34"
    ],
    "mx": []
   }
  },
  "tls": {
   "days_until_expiry": 60,
   "issuer_common_name": "DigiCert TLS RSA CA"
  },
  "domain": "example.com",
  "degraded": false,
  "components": [
   {
    "ms": 640,
    "ok": true,
    "name": "whois"
   }
  ],
  "email_auth": {
   "dmarc": {
    "exists": false
   },
   "grade": "C",
   "score": 40
  },
  "subdomains": {
   "subdomains": [
    {
     "hostname": "www.example.com"
    }
   ],
   "subdomain_count": 3
  },
  "composed_of": [
   "whois",
   "dns-lookup",
   "ssl-cert-info",
   "dmarc-check",
   "subdomain-enum",
   "homoglyph-check",
   "ip-asn"
  ],
  "registration": {
   "flags": [],
   "age_days": 11223,
   "registered_date": "1995-08-14T04:00:00Z"
  },
  "ip_intelligence": {
   "asn": 15133,
   "asn_org": "EDGECAST",
   "country": "US"
  },
  "lookalike_check": {
   "risk_level": "none",
   "is_suspicious": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-threat-report-2637dea3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
