Skip to main content
GET
/
api
/
public
/
results
/
{interviewId}
Get interview results
curl --request GET \
  --url http://localhost:3001/api/public/results/{interviewId} \
  --header 'x-api-key: <api-key>'
{
  "candidate_id": "<string>",
  "interview_id": "<string>",
  "score": 123,
  "analysis": [
    {
      "key": "<string>",
      "name": "<string>",
      "score": 123,
      "explanation": "<string>"
    }
  ],
  "completed_at": "2023-11-07T05:31:56Z",
  "integrity_report": {},
  "completion_time_seconds": 123,
  "problem_id": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

interviewId
string
required

The unique identifier of the interview

Response

Successfully retrieved interview results

candidate_id
string
required

Identifier of the candidate

interview_id
string
required

Identifier of the interview

score
number
required

The aggregate score for the interview (0-100)

analysis
object[]
required

Detailed analysis broken down by dimension

completed_at
string<date-time> | null
required

ISO 8601 timestamp when the interview was completed

integrity_report
object
required

Fraud detection and integrity analysis

completion_time_seconds
number | null
required

Time taken to complete the interview in seconds

problem_id
string
required

Identifier of the problem/question