---
title: "List interview templates"
method: GET
path: "/api/v2/interview-templates"
tags: ["Interview Templates"]
---

# List interview templates

`GET /api/v2/interview-templates`

Returns all interview templates configured for the workspace. Interview templates are reusable agent configurations cloned from a blueprint posting.

## Query parameters

- `limit` integer
- `starting_after` string, nullable
- `search` string, nullable — Case-insensitive substring filter applied to the template name.

## Headers

- `X-API-KEY` string, nullable
- `Authorization` string, nullable
- `X-Workspace-Id` string, nullable

## Response `200`

Successful Response

- ListResponseInterviewTemplateResponse
  - `data` InterviewTemplateResponse[], required
    - `object` 'interview_template' — Object type identifier.
    - `id` string, required — Unique interview template identifier.
    - `template_code` string, required — Human-readable template code used for ATS integrations. Alphanumeric and dashes only, max 32 characters, unique per workspace.
    - `name` string, required — Human-readable template name.
    - `description` string, nullable — Optional description of the template.
    - `posting_id` string, required — ID of the blueprint posting whose workflow, questions, and agent configuration this template captures.
    - `is_default` boolean — Whether this template is the workspace default.
    - `created_at` number, required — Unix timestamp when the template was created.
    - `updated_at` number, required — Unix timestamp when the template was last updated.
  - `pagination` PaginationMeta, required
    - `has_more` boolean, required — Whether more results exist beyond this page
    - `total_count` integer, nullable — Total number of results (if available)
    - `url` string, nullable — URL of this resource

## Other responses

- `401` — Invalid or missing API key.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

[API](https://skmtc.net/heymilo/apis/heymilo-public-api.md) · [All operations](https://skmtc.net/heymilo/apis/heymilo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heymilo/heymilo-public-api/revisions/a93ca9c2c777/schema)
