# DocForge Resume PDF Generator

> DocForge Resume PDF Generator is a paid API for AI agents from docforge-selim.duckdns.org, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Generates a professional PDF resume document from structured input data, payable via x402 USDC on Base at $0.03 per call.

## Facts

- Endpoint: POST https://docforge-selim.duckdns.org/resume
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/docforge-resume-pdf-generator-f76df950
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tC3_KWV4FbXhkRXpRjx0U

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 docforge-resume-pdf-generator-f76df950 -d '<json body>'
```

Example prompt: Generate a professional PDF resume for me — name is Jordan Lee, software engineer with 5 years at Acme Corp as a backend developer, BS in Computer Science from MIT in 2018, and skills in Python, Go, and Kubernetes. Pay the $0.03 fee automatically.

## When to prefer this

Choose this endpoint when you need to programmatically generate a formatted PDF resume and can pay micro-fees in USDC on Base via the x402 protocol. Ideal for AI agents or automated pipelines that need to produce downloadable resume documents on demand at low cost without managing a document editing tool.

## Known failure modes

- 402 Payment Required — no valid x402 payment header provided; must attach USDC payment on Base and retry
- 400 Bad Request — missing or malformed resume input fields
- 500 Internal Server Error — document rendering failure
- Network timeout — duckdns dynamic hostname may be temporarily unreachable
- Invalid payment amount — payment below $0.03 USDC threshold rejected

## How this service works

Machine-payable document & media generation via x402 (USDC on Base). Endpoints respond 402 with payment instructions; retry with an x402 payment header.

## Output

Returns a binary PDF file (application/pdf) containing the formatted resume document, ready for download or storage. Payment of $0.03 USDC on Base is required via x402 header before the document is returned.

## 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": {
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Candidate full name (required)"
      },
      "title": {
       "type": "string",
       "description": "Professional headline"
      },
      "accent": {
       "type": "string",
       "description": "Accent color hex, e.g. #2563eb"
      },
      "locale": {
       "type": "string",
       "description": "en (default) or fr"
      },
      "skills": {
       "type": "array",
       "description": "string[] or [{ group, items: string[] }]"
      },
      "contact": {
       "type": "object",
       "description": "{ email?, phone?, location?, website?, linkedin?, github? }"
      },
      "summary": {
       "type": "string"
      },
      "projects": {
       "type": "array",
       "description": "[{ name, description?, link? }]"
      },
      "template": {
       "type": "string",
       "description": "classic (default) or modern"
      },
      "education": {
       "type": "array",
       "description": "[{ degree, school, year?, details? }]"
      },
      "languages": {
       "type": "array",
       "description": "[{ name, level? }]"
      },
      "experience": {
       "type": "array",
       "description": "[{ role, company, location?, start?, end?, bullets?: string[] }]"
      },
      "certifications": {
       "type": "array",
       "description": "string[]"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": "Binary PDF resume (application/pdf)"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/docforge-resume-pdf-generator-f76df950/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from docforge-selim.duckdns.org](https://www.zero.xyz/host/docforge-selim.duckdns.org/llms.txt)
