Laddro DocsLaddro Docs

Templates

Templates

Haal beschikbare templates op voor cv's en motivatiebrieven. Deze endpoints zijn publiek en vereisen geen authenticatie.

Lijst van Templates

GET /v1/templates

Retourneert alle beschikbare templates met hun metadata.

Verzoek

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

Antwoord

{
  "data": [
    {
      "id": "graphite",
      "name": "Graphite",
      "description": "Clean, modern single-column layout",
      "category": "professional",
      "thumbnail": "https://cdn.laddro.com/templates/graphite.webp"
    }
  ]
}

Er zijn momenteel 22 templates beschikbaar in de categorieen: professioneel, creatief, academisch en minimaal.


Template Ophalen

GET /v1/templates/{templateId}

Retourneert gedetailleerde informatie over een specifieke template.

Parameters

ParameterTypeLocatieBeschrijving
templateIdstringpathTemplate-ID (bijv. graphite)

Verzoek

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

Antwoord

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

Fouten

StatusBeschrijving
404Template niet gevonden

On this page