Everything the builder does is plain HTTP — render Markdown or a structured resume model to PDF, parse Markdown into the model, list templates. No account needed to try it:
curl -F "file=@resume.md" -F "template=modern" \ https://YOUR-HOST/api/generate-pdf -o resume.pdf
| Anonymous | With API key | |
|---|---|---|
| Rate | 1 request/s, burst 5 (per IP) | 5 requests/s |
| Daily renders | best effort | 2,000 |
| Usage stats | — | GET /api/me |
Free — verify your email and the key appears once. No password, ever. Requesting a new link rotates the key.
curl -H "Authorization: Bearer rk_..." \ -F "file=@resume.md" https://YOUR-HOST/api/generate-pdf -o resume.pdf curl -H "Authorization: Bearer rk_..." https://YOUR-HOST/api/me
POST /api/generate-pdf | Markdown file or resume_json model → PDF. All template/style fields per the README. |
POST /api/resume/parse | Markdown → structured resume model (JSON). |
POST /api/resume/markdown | Model (JSON) → canonical Markdown. |
GET /api/templates | Template presets and style defaults. |
GET /api/me | Your account and 30-day usage. |
The whole product is one MIT-licensed Go binary — self-host it and there is no registration at all (keys only activate when the operator configures a store). See the README.