Export
Export a resume as a PDF file using a specified template.
Export Resume
POST /v1/exportRenders and returns a PDF of the specified resume.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
resumeId | string | Yes | Resume ID |
templateId | string | Yes | Template to use |
fontId | string | No | Font override |
Request
curl https://api.laddro.com/v1/export \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"resumeId": "res_abc123",
"templateId": "graphite"
}' \
--output resume.pdfResponse
Returns application/pdf binary data.
Errors
| Status | Description |
|---|---|
400 | Missing required fields |
401 | Missing or invalid API key |
402 | No credits remaining |
404 | Resume or template not found |
Last updated on