# AgentMail Get Draft

> AgentMail Get Draft is a free API for AI agents from AgentMail at mpp.api.agentmail.to, Free, status unknown (last checked 2026-09-15).

Retrieves a specific email draft by its ID from an AgentMail pod inbox

## Facts

- Endpoint: GET https://mpp.api.agentmail.to/v0/pods/:pod_id/drafts/:draft_id
- Price: Free
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: AgentMail
- Docs: https://docs.agentmail.to
- Website: https://agentmail.to
- Tags: email, inboxes, domains, drafts, threads, webhooks, messaging, ai, social
- Canonical page: https://www.zero.xyz/c/agentmail-draft-id-783dbb6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cmg2e5_E1mbFRufz_45F8

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-draft-id-783dbb6c
```

Example prompt: Pull up the draft with ID draft_abc123 from pod pod_xyz456 in AgentMail so I can review its subject, recipients, and body before sending.

## When to prefer this

Use this endpoint when you need to inspect the full details of a specific known draft email — including its recipients, body, labels, and scheduled send time — within an AgentMail pod. Prefer this over listing drafts when you already have the draft_id and need precise content.

## Known failure modes

- 404 Not Found if draft_id does not exist in the specified pod
- 403 Forbidden if the Authorization bearer token lacks access to the pod
- 400 Bad Request if pod_id or draft_id are missing or malformed
- 401 Unauthorized if no or invalid bearer token is provided

## How this service works

Get Draft

## Output

Returns a Draft object containing inbox_id, draft_id, labels, created_at, updated_at, and optionally subject, to, cc, bcc, reply_to, html body, text body, plain text preview, scheduled send time (send_at), client_id, and references to previous messages in the thread.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "pod_id",
  "draft_id"
 ],
 "properties": {
  "pod_id": {
   "type": "string",
   "title": "PodId",
   "description": "ID of pod."
  },
  "draft_id": {
   "type": "string",
   "title": "DraftId",
   "description": "ID of draft."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Draft",
 "required": [
  "inbox_id",
  "draft_id",
  "labels",
  "updated_at",
  "created_at"
 ],
 "properties": {
  "cc": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "DraftCc",
   "description": "Addresses of CC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`."
  },
  "to": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "DraftTo",
   "description": "Addresses of recipients. In format `username@domain.com` or `Display Name <username@domain.com>`."
  },
  "bcc": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "DraftBcc",
   "description": "Addresses of BCC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`."
  },
  "html": {
   "type": "string",
   "title": "DraftHtml",
   "description": "HTML body of draft."
  },
  "text": {
   "type": "string",
   "title": "DraftText",
   "description": "Plain text body of draft."
  },
  "labels": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "DraftLabels",
   "description": "Labels of draft."
  },
  "preview": {
   "type": "string",
   "title": "DraftPreview",
   "description": "Text preview of draft."
  },
  "send_at": {
   "type": "string",
   "title": "DraftSendAt",
   "format": "date-time",
   "description": "Time at which to schedule send draft."
  },
  "subject": {
   "type": "string",
   "title": "DraftSubject",
   "description": "Subject of draft."
  },
  "draft_id": {
   "type": "string",
   "title": "DraftId",
   "description": "ID of draft."
  },
  "inbox_id": {
   "type": "string",
   "title": "InboxId",
   "description": "The ID of the inbox."
  },
  "reply_to": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "DraftReplyTo",
   "description": "Reply-to addresses. In format `username@domain.com` or `Display Name <username@domain.com>`."
  },
  "client_id": {
   "type": "string",
   "title": "DraftClientId",
   "description": "Client ID of draft."
  },
  "created_at": {
   "type": "string",
   "format": "date-time",
   "description": "Time at which draft was created."
  },
  "references": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "IDs of previous messages in thread."
  },
  "updated_at": {
   "type": "string",
   "title": "DraftUpdatedAt",
   "format": "date-time",
   "description": "Time at which draft was last updated."
  },
  "att
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentmail-draft-id-783dbb6c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mpp.api.agentmail.to](https://www.zero.xyz/host/mpp.api.agentmail.to/llms.txt)
