Skip to main content
GET
/
api
/
v2
/
interview-templates
List interview templates
curl --request GET \
  --url https://api.heymilo.ai/api/v2/interview-templates \
  --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
    }
  ],
  "pagination": {
    "has_more": true,
    "total_count": 123,
    "url": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.heymilo.ai/llms.txt

Use this file to discover all available pages before exploring further.

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
required

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
starting_after
string | null
search
string | null

Case-insensitive substring filter applied to the template name.

Response

Successful Response

data
InterviewTemplateResponse · object[]
required
pagination
PaginationMeta · object
required