Templates
Templates
Haal beschikbare templates op voor cv's en motivatiebrieven. Deze endpoints zijn publiek en vereisen geen authenticatie.
Lijst van Templates
GET /v1/templatesRetourneert alle beschikbare templates met hun metadata.
Verzoek
curl https://api.laddro.com/v1/templatesAntwoord
{
"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
| Parameter | Type | Locatie | Beschrijving |
|---|---|---|---|
templateId | string | path | Template-ID (bijv. graphite) |
Verzoek
curl https://api.laddro.com/v1/templates/graphiteAntwoord
{
"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
| Status | Beschrijving |
|---|---|
404 | Template niet gevonden |