Skip to main content
GET
/
api
/
v2
/
interview-templates
/
{template_id}
Get an interview template
curl --request GET \
  --url https://api.heymilo.ai/api/v2/interview-templates/{template_id} \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "id": "<string>",
    "template_code": "<string>",
    "name": "<string>",
    "posting_id": "<string>",
    "created_at": 123,
    "updated_at": 123,
    "object": "interview_template",
    "description": "Standard 3-stage interview for senior backend roles.",
    "is_default": false
  },
  "meta": {}
}

Authorizations

X-API-KEY
string
header
required

API key for authentication. Pass your key in the X-API-KEY header.

Headers

X-API-KEY
string | null
Authorization
string | null
X-Workspace-Id
string | null

Path Parameters

template_id
string
required

Response

Successful Response

data
InterviewTemplateResponse · object
required

A reusable interview agent configuration.

Interview templates capture a blueprint posting's full agentic workflow (questions, criteria, agent settings) so it can be cloned onto new postings or used as the seed for new agents. Each template references its blueprint posting via posting_id.

meta
Meta · object

Optional metadata. Shape varies by endpoint.