# AgentMail Zone File Retrieval

> AgentMail Zone File Retrieval is a free API for AI agents from x402.api.agentmail.to, callable via x402, Free, status unknown (last checked 2026-09-08).

Retrieves the DNS zone file for a specific domain within an AgentMail pod

## Facts

- Endpoint: GET https://x402.api.agentmail.to/v0/pods/%7Bpod_id%7D/domains/%7Bdomain_id%7D/zone-file
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentmail-zone-file-retrieval-8b05574e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MCmhXkgC-QvWp4HK87Y3u

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 agentmail-zone-file-retrieval-8b05574e
```

Example prompt: Can you fetch the DNS zone file for domain ID 'acme-corp' inside AgentMail pod 'pod-abc123'? I want to see the current DNS records configured for that email domain.

## When to prefer this

Use this endpoint when you need to inspect, audit, or verify the DNS zone configuration for a specific email domain managed within an AgentMail pod. Ideal when setting up email routing, debugging deliverability issues, or confirming DNS records are correctly provisioned for an AI agent's inbox domain.

## Known failure modes

- pod_id or domain_id not found — likely 404 error
- Unauthorized access if authentication token is missing or invalid
- Domain does not belong to the specified pod — mismatch error
- Empty or malformed zone file if domain is newly provisioned
- Rate limiting or payment required (x402) if free tier exceeded

## How this service works

AgentMail gives AI agents real email inboxes. Create, send, receive, and search messages via REST API — built for autonomous agents and agentic workflows.

## Output

Returns a JSON object containing the DNS zone file data for the specified domain within the given AgentMail pod, including DNS records and configuration entries used to route email for that domain.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "pod_id",
      "domain_id"
     ],
     "properties": {
      "pod_id": {
       "type": "string"
      },
      "domain_id": {
       "type": "string"
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentmail-zone-file-retrieval-8b05574e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.api.agentmail.to](https://www.zero.xyz/host/x402.api.agentmail.to/llms.txt)
