POST
/
interview
curl --request POST \
  --url https://public.api.micro1.ai/interview \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "interview_name": "Full Stack Engineer Interview",
  "skills": [
    {
      "name": "React",
      "description": "Must be proficient in React Context API"
    }
  ],
  "custom_question_list": [
    {
      "question": "What are your strengths and weaknesses?",
      "time": 2,
      "type": "audio"
    }
  ],
  "interview_language": "en",
  "can_change_interview_language": false,
  "only_coding_round": false,
  "is_coding_round_required": false,
  "selected_coding_language": "python",
  "coding_exercise_details": "Make the DSA problem extremely difficult and focus on a problem that will require recursion to solve efficiently.",
  "is_proctoring_required": true
}'
{
  "status": true,
  "message": "Interview created successfully",
  "data": {
    "interview_id": "123e4567-e89b-12d3-a456-426614174000",
    "invite_url": "https://interview.micro1.ai/intro/micro1?uid=123e4567-e89b-12d3-a456-426614174000"
  }
}

Authorizations

x-api-key
string
header
required

API key to access the API

Body

application/json

Request body to create an interview

Request to create an interview

Response

200
application/json

Successful response

Response for creating an interview