# agent402.tools DNS & Network Ops Bundle

> agent402.tools DNS & Network Ops Bundle is a paid API for AI agents from agent402.tools, paid per call via x402, $0.011/call, status unknown (last checked 2026-09-14).

Runs a comprehensive DNS health check on a domain — covering records, multi-resolver propagation, WHOIS, ASN info, robots.txt, and reachability — in a single paid API call.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/dns-network-ops
- Price: $0.011/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-dns-network-ops-bundle-6e702d54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B16-5HSU_h3aHPXd4ROFN

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 agent402-tools-dns-network-ops-bundle-6e702d54 -d '<json body>'
```

Example prompt: Can you run a full DNS health check on stripe.com — I want to see the DNS records, propagation status across resolvers, WHOIS info, ASN details, robots.txt, and whether the site is actually reachable?

## When to prefer this

Use this endpoint when you need a comprehensive, one-shot DNS and network audit for a domain without making separate API calls for DNS lookup, propagation, WHOIS, ASN, robots.txt, and reachability. It's ideal for infrastructure diagnostics, domain onboarding checks, or monitoring domain health in a single paid request.

## Known failure modes

- Invalid or non-existent domain returns an error or empty results
- Domain is reachable but DNS records are misconfigured — partial results returned
- WHOIS data unavailable for privacy-protected or newly registered domains
- Propagation check may show inconsistent results if domain was recently updated
- Payment failure via x402 results in no data returned

## How this service works

Bundled execution of the DNS & network ops workflow - End-to-end DNS health check: records, multi-resolver propagation, WHOIS, ASN, robots.txt, and reachability. One x402 payment runs 6 underlying tools (dns-lookup, dns-propagation, asn-info, whois, http-check, robots-check); partial-success per step.

## Output

Returns a bundled report covering: DNS record lookup results, multi-resolver propagation status, WHOIS registration data, ASN/network information, robots.txt contents, and reachability status — all for the queried domain in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain to check (e.g. stripe.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "domain": "example.com"
  },
  "pack": "dns-network-ops",
  "steps": [
   {
    "ok": true,
    "slug": "dns-lookup",
    "result": {}
   },
   {
    "ok": true,
    "slug": "dns-propagation",
    "result": {}
   },
   {
    "ok": true,
    "slug": "asn-info",
    "result": {}
   },
   {
    "ok": true,
    "slug": "whois",
    "result": {}
   },
   {
    "ok": true,
    "slug": "http-check",
    "result": {}
   },
   {
    "ok": true,
    "slug": "robots-check",
    "result": {}
   }
  ],
  "summary": "6/6 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-dns-network-ops-bundle-6e702d54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
