# DomainSignal DNS Security Audit

> DomainSignal DNS Security Audit is a paid API for AI agents from api.servocenter.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Audits DNS security configuration for a domain and returns a risk score, identified risks, and recommendations

## Facts

- Endpoint: GET https://api.servocenter.com/api/v1/domain/dns-audit
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domainsignal-dns-security-audit-96d5c840
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_28w23IAgGZmqgMrKZ7xlD

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 domainsignal-dns-security-audit-96d5c840
```

Example prompt: Can you run a DNS security audit on acmecorp.com and tell me what risks are flagged — things like missing DMARC, SPF, or DKIM — and what score it gets?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-result DNS security audit with a machine-readable risk score and actionable recommendations — especially for email security posture checks (DMARC, SPF, DKIM). Prefer it over manual DNS lookups when you want a structured risk score rather than raw DNS records, and over full security scanners when you only need DNS-layer intelligence at low per-call cost.

## Known failure modes

- Invalid or non-existent domain returns an error or empty risk list
- Malformed domain input may cause a 400 bad request
- DKIM selector not provided may result in incomplete DKIM analysis
- Transient DNS resolution failures may produce incomplete results
- Rate limiting or payment failure may return a 402 or 429 response

## How this service works

Pay-per-result domain qualification, DNS security audits, and website intelligence over x402.

## Output

Returns a JSON object containing the domain name, a numeric security score (0-100), a list of identified risks as human-readable strings (e.g. 'DMARC is missing'), and a list of recommendations for remediation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name, URL, or email address"
      },
      "selector": {
       "type": "string",
       "description": "Optional DKIM selector"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risks": [
   "DMARC is missing"
  ],
  "score": 75,
  "domain": "example.com",
  "recommendations": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domainsignal-dns-security-audit-96d5c840/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.servocenter.com](https://www.zero.xyz/host/api.servocenter.com/llms.txt)
