# 01Mind Document Renderer (render-document)

> 01Mind Document Renderer (render-document) is a paid API for AI agents from 01mind.net, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Converts structured content (blocks, markdown, spreadsheet rows, or templates with values) into a real .docx or .xlsx file returned as base64 in the API response.

## Facts

- Endpoint: POST https://01mind.net/purchase/render-document
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/01mind-document-renderer-render-document-66ad5065
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JYNt30SZpCK9v5IOdZHsB

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 01mind-document-renderer-render-document-66ad5065 -d '<json body>'
```

Example prompt: Take this structured report content — headings, paragraphs, and a summary table — and render it as a real .docx Word document I can hand to my client, using a JSON body with POST method.

## When to prefer this

Choose this endpoint when an AI agent needs to hand a human a real, openable Office file (.docx or .xlsx) rather than raw text or markdown. It is ideal when the output must be shareable, printable, or editable in Word or Excel. Prefer this over PDF generators when the recipient needs to edit the document, and over plain-text output when formatting (headings, tables, multi-sheet workbooks) matters. The base64-in-response design avoids the need for a separate download step or file storage.

## Known failure modes

- Missing required 'input' field returns a validation error
- Invalid 'type' (must be 'http') causes rejection
- Unsupported 'method' value (must be POST, PUT, or PATCH) causes rejection
- Invalid 'bodyType' (must be json, form-data, or text) causes rejection
- Malformed or empty body content may produce a blank or corrupt document
- Payment failure (insufficient USDC balance or x402 error) blocks execution
- Exceeding 5 free documents per month per API key without payment causes billing rejection

## How this service works

Turn structured content into a real .docx or .xlsx file an agent can hand to a person -- headings, paragraphs, tables and multi-sheet workbooks, returned as base64 in the same response. Accepts blocks, markdown, spreadsheet rows, or a saved template plus values. 5 free documents per month per API key, then $0.25 each. Free dry run at POST /sandbox/execute/render-document.

## Output

A base64-encoded .docx or .xlsx file returned in the JSON response body of the same API call, ready to be decoded and saved or handed to a user — no separate download step required. Multi-sheet workbooks and fully formatted Word documents with headings, paragraphs, and tables are supported.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/01mind-document-renderer-render-document-66ad5065/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 01mind.net](https://www.zero.xyz/host/01mind.net/llms.txt)
