FlashApply API Docs
Need help?
Back to Resume Parsing & Intelligence

Create Template

Creates a new resume template. Provide HTML with inline CSS and Mustache variables.

Sample Request & Response

POST
/v1/templates
Sample Request

Headers:

{
  "Authorization": "Bearer <YOUR_API_KEY>",
  "Content-Type": "application/json"
}

Body:

{
  "name": "Modern",
  "description": "A clean, minimalist layout for engineering roles.",
  "html": "<style>h1{margin:0}</style><h1>{{personalInfo.name}}</h1>{{#work}}<p>{{position}} at {{company}}</p>{{/work}}",
  "tags": [
    "modern",
    "ats-safe"
  ]
}
Sample Response (201)
{
  "templateId": "tmpl_12345",
  "name": "Modern",
  "tags": [
    "modern",
    "ats-safe"
  ],
  "createdAt": "2025-08-08T12:00:00Z"
}