Getting Started
- Introduction
- Authentication
- Webhooks
Interview
Interview Reports
Mock Interview
Get all saved interviews
This endpoint fetches all interviews that have been previously created and saved, such as interviews for specific roles like Full Stack Engineer or LLM Engineer.
curl --request GET \
--url https://public.api.micro1.ai/interviews \
--header 'x-api-key: <api-key>'
{
"status": "true",
"message": "Interviews fetched successfully",
"data": [
{
"interview_id": "123e4567-e89b-12d3-a456-426614174000",
"interview_name": "Full Stack Engineer Interview",
"invite_url": "https://interview.micro1.ai/intro/micro1?uid=123e4567-e89b-12d3-a456-426614174000",
"skills": [
{
"name": "React",
"description": "Must be proficient in React Context API"
}
],
"custom_questions": [
{
"question": "Where do you see yourself in 5 years?",
"time": 120,
"type": "audio"
}
],
"interview_language": "English",
"can_change_interview_language": false,
"only_coding_round": true,
"is_coding_round_required": true,
"selected_coding_language": "Python",
"is_proctoring_required": true,
"date_created": "2021-01-01 00:00:00",
"date_modified": "2021-01-01 00:00:00",
"status": "active"
}
]
}
Authorizations
API key to access the API
Query Parameters
Page number
Number of items per page
Keyword to search for
Response
Response for getting all interviews
Status of the response
"true"
Message of the response
"Interviews fetched successfully"
List of interviews
Interview object
ID of the interview
"123e4567-e89b-12d3-a456-426614174000"
Name of the interview
"Full Stack Engineer Interview"
The URL to invite the candidates to the interview
"https://interview.micro1.ai/intro/micro1?uid=123e4567-e89b-12d3-a456-426614174000"
Custom questions for the interview
Custom question for the interview
The question for the interview
"Where do you see yourself in 5 years?"
The time for the question in seconds
120
The type of the question
audio
, text
"audio"
[
{
"question": "Where do you see yourself in 5 years?",
"time": 120,
"type": "audio"
}
]
Language of the interview
"English"
Whether the candidate can change the interview language
false
Whether the interview is a coding round only
true
Whether the coding round is required
true
The coding language for the coding round
"Python"
Whether the proctoring is required
true
Date created of the interview
"2021-01-01 00:00:00"
Date modified of the interview
"2021-01-01 00:00:00"
Status of the interview
"active"
curl --request GET \
--url https://public.api.micro1.ai/interviews \
--header 'x-api-key: <api-key>'
{
"status": "true",
"message": "Interviews fetched successfully",
"data": [
{
"interview_id": "123e4567-e89b-12d3-a456-426614174000",
"interview_name": "Full Stack Engineer Interview",
"invite_url": "https://interview.micro1.ai/intro/micro1?uid=123e4567-e89b-12d3-a456-426614174000",
"skills": [
{
"name": "React",
"description": "Must be proficient in React Context API"
}
],
"custom_questions": [
{
"question": "Where do you see yourself in 5 years?",
"time": 120,
"type": "audio"
}
],
"interview_language": "English",
"can_change_interview_language": false,
"only_coding_round": true,
"is_coding_round_required": true,
"selected_coding_language": "Python",
"is_proctoring_required": true,
"date_created": "2021-01-01 00:00:00",
"date_modified": "2021-01-01 00:00:00",
"status": "active"
}
]
}