Render HTML candidate cards
Sourcing
Render HTML Candidate Cards
Generates self-contained HTML/CSS candidate profile cards for up to 10 profile IDs. Synchronous — returns immediately with rendered card snippets. Supports ‘dark’ (default) and ‘light’ themes.
POST
Render HTML candidate cards
Generates self-contained, responsive HTML/CSS profile cards for up to 10 candidate profile IDs. This endpoint is synchronous — it returns immediately with rendered card snippets.
Overview
The rendered HTML cards are ready to embed directly into your ATS, internal recruitment dashboards, or email templates. Each card includes:- Candidate name (gradient-styled heading)
- Current role and company
- AI match score badge
- InstaView rationale summary
- Primary skills list
- LinkedIn profile link button
Themes
| Theme | Description |
|---|---|
"dark" | Dark slate background (#0f172a) — default |
"light" | Clean white background (#ffffff) |
Examples
Request
Response (200 OK)
Partial Failure (200 OK)
If a profile ID is not found for the authenticating company, it is returned withsuccess: false — the rest of the batch is still rendered:
Embedding the Card
ThehtmlContent string can be inserted directly into your HTML via innerHTML or server-side template rendering:
Authorizations
API key for authentication using Bearer scheme
Body
application/json
Array of profile IDs for which to render HTML cards. Maximum 10 per request.
Required array length:
1 - 10 elementsExample:
["profile_abc123", "profile_def456"]Visual theme for the rendered HTML cards (default: 'dark').
Available options:
dark, light Example:
"dark"