Skip to main content
GET
/
merchant-result-list
List interview results
curl --request GET \
  --url https://cool.jobmojito.com/functions/v1/merchant-result-list \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://cool.jobmojito.com/functions/v1/merchant-result-list"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://cool.jobmojito.com/functions/v1/merchant-result-list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://cool.jobmojito.com/functions/v1/merchant-result-list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://cool.jobmojito.com/functions/v1/merchant-result-list"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://cool.jobmojito.com/functions/v1/merchant-result-list")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://cool.jobmojito.com/functions/v1/merchant-result-list")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "id": "<string>",
      "interview_result_id": "<string>",
      "interview_result_pre_screening_id": "<string>",
      "merchant_id": "<string>",
      "profile_id": "<string>",
      "profile_interview_id": "<string>",
      "definition_id": "<string>",
      "candidate_name": "<string>",
      "candidate_email": "<string>",
      "position_name": "<string>",
      "position_step": "<string>",
      "type": "<string>",
      "emoji": "<string>",
      "external_id": "<string>",
      "mojito_language_code": "<string>",
      "status": "<string>",
      "coach_status": "<string>",
      "decision_status": "<string>",
      "interview_started": true,
      "is_multi_stage": true,
      "is_test": true,
      "recruiter_shortlist": true,
      "recruiter_risks": "<unknown>",
      "duration_ds": 123,
      "score": 123,
      "score_simulation": 123,
      "score_sentiment": 123,
      "score_words_per_minute": 123,
      "score_interview_ai": 123,
      "score_answer_ai": 123,
      "score_pronunciation": 123,
      "processing_status": "<string>",
      "processing_error": "<string>",
      "kyc_processing_status": "<string>",
      "position_result_step_id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "pagination": {
    "total": 137,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}

Authorizations

Authorization
string
header
required

Supabase JWT — Authorization: Bearer <token>.

Query Parameters

merchant_id
string<uuid>

Optional merchant to scope to. Admins and sub-merchant operators only; other callers always use their token's merchant.

Example:

"28106cba-1c27-4e53-b149-32113e5e8e31"

type
enum<string>
default:interview

Product type of results to list.

Available options:
interview,
coaching,
assessment,
public_avatar,
persona
Example:

"interview"

tab
enum<string>

Filter by decision/completion state. Omit (or empty) to include all.

Available options:
decided-rejected,
undecided,
shortlist,
decided-selected,
completed,
incomplete,
archived-interview,
public_avatar,
archived-public_avatar,
Example:

"undecided"

step
enum<string>

Filter by pipeline step (pre-screening vs interview). Omit for both.

Available options:
pre-screening,
interview
Example:

"interview"

interview_id
string<uuid>

Filter to a single interview definition id.

profile_interview_id
string<uuid>

Filter to a single candidate (profile_interview) id.

risks
string

Comma-separated list of recruiter-risk keys to filter by (matches any).

order_by
enum<string>
default:created_at_newest

Sort order of the result set.

Available options:
score,
created_at_newest,
created_at_oldest,
updated_at_newest
Example:

"created_at_newest"

filter_text
string

Case-insensitive search on candidate name or email.

filter_emoji
string

Filter by the candidate emoji marker.

limit
integer
default:50

Maximum number of records to return (1–1000).

Required range: 1 <= x <= 1000
Example:

50

offset
integer | null
default:0

Number of records to skip from the start of the result set.

Required range: x >= 0
Example:

0

Response

A page of interview results with pagination metadata.

data
object[]
required

The merchant's interview results for this page.

pagination
object
required