Laddro DocsLaddro Docs
API Reference

Templates

Templates

Retrieve available resume and cover letter templates. These endpoints are public and require no authentication.

List Templates

GET /v1/templates

Returns all available templates with their metadata.

Request

curl https://api.laddro.com/v1/templates

Response

{
  "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

ParameterTypeLocationDescription
templateIdstringpathTemplate ID (e.g., graphite)

Request

curl https://api.laddro.com/v1/templates/graphite

Response

{
  "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

StatusDescription
404Template not found

On this page