Templates
Retrieve available resume and cover letter templates. These endpoints are public and require no authentication.
List Templates
GET /v1/templatesReturns all available templates with their metadata.
Request
curl https://api.laddro.com/v1/templatesResponse
{
"data": [
{
"id": "graphite",
"name": "Graphite",
"description": "Clean, modern single-column layout",
"category": "professional",
"thumbnail": "https://cdn.laddro.com/templates/graphite.webp"
}
]
}22 templates are currently available across categories: professional, creative, academic, and minimal.
Get Template
GET /v1/templates/{templateId}Returns detailed information about a specific template.
Parameters
| Parameter | Type | Location | Description |
|---|---|---|---|
templateId | string | path | Template ID (e.g., graphite) |
Request
curl https://api.laddro.com/v1/templates/graphiteResponse
{
"data": {
"id": "graphite",
"name": "Graphite",
"description": "Clean, modern single-column layout",
"category": "professional",
"thumbnail": "https://cdn.laddro.com/templates/graphite.webp",
"supportedSections": ["header", "summary", "experience", "education", "skills", "languages", "certifications"]
}
}Errors
| Status | Description |
|---|---|
404 | Template not found |
Last updated on