List Evaluators
curl --request POST \
--url https://api.heify.com/list-evaluators \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{}'import requests
url = "https://api.heify.com/list-evaluators"
payload = {}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.heify.com/list-evaluators', 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://api.heify.com/list-evaluators",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.heify.com/list-evaluators"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.heify.com/list-evaluators")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.heify.com/list-evaluators")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"data": {
"items": [
{
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"tag": "nombree",
"description": "descripcion",
"language": "ar",
"context": "Estas evaluando a un agente de atencion al cliente en una llamada entrante.",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativo",
"description": "El agente debe presentarse con su nombre completo...",
"type": "boolean",
"weight": 50
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificacion de Identidad",
"description": "El agente debe verificar la identidad del cliente...",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatia",
"description": "El agente muestra comprension ante la situacion del cliente...",
"type": "scale",
"weight": 50
}
],
"created_at": "2026-03-21T15:50:25.898670+00:00"
},
{
"evaluator_id": "2abb5563-dd64-47bb-bb17-94252e168b06",
"tag": "pitch temporal",
"description": "",
"language": "es",
"context": "Estas evaluando un pitch de una empresa a inversores.",
"criteria": [
{
"id": "2faa4a20-7445-4beb-a09e-2af26872dba3",
"name": "Saludo Corporativo inicial2",
"description": "El agente debe presentarse con su nombre completo...",
"type": "boolean",
"weight": 34
},
{
"id": "5718a64e-43e6-4959-90a6-19946b44249c",
"name": "Escucha Activa",
"description": "El agente no interrumpe al cliente...",
"type": "scale",
"weight": 33
},
{
"id": "d34172c8-6bf7-486e-aced-d35dc8c2c283",
"name": "Manejo de Objeciones",
"description": "Ante una objecion o rechazo del cliente...",
"type": "scale",
"weight": 33
},
{
"id": "58f6bc79-3eda-4e67-b762-52466145850a",
"name": "cierre de inversion",
"description": "consigue cerrar la venta/inversion satisfactoriamente",
"type": "strict",
"weight": 0
}
],
"created_at": "2026-03-07T22:53:28.735002+00:00"
}
],
"count": 4
}
}Evaluators
List Evaluators
Returns all evaluators for the authenticated account, sorted by creation date (newest first).
POST
/
list-evaluators
List Evaluators
curl --request POST \
--url https://api.heify.com/list-evaluators \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{}'import requests
url = "https://api.heify.com/list-evaluators"
payload = {}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.heify.com/list-evaluators', 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://api.heify.com/list-evaluators",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.heify.com/list-evaluators"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.heify.com/list-evaluators")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.heify.com/list-evaluators")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"data": {
"items": [
{
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"tag": "nombree",
"description": "descripcion",
"language": "ar",
"context": "Estas evaluando a un agente de atencion al cliente en una llamada entrante.",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativo",
"description": "El agente debe presentarse con su nombre completo...",
"type": "boolean",
"weight": 50
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificacion de Identidad",
"description": "El agente debe verificar la identidad del cliente...",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatia",
"description": "El agente muestra comprension ante la situacion del cliente...",
"type": "scale",
"weight": 50
}
],
"created_at": "2026-03-21T15:50:25.898670+00:00"
},
{
"evaluator_id": "2abb5563-dd64-47bb-bb17-94252e168b06",
"tag": "pitch temporal",
"description": "",
"language": "es",
"context": "Estas evaluando un pitch de una empresa a inversores.",
"criteria": [
{
"id": "2faa4a20-7445-4beb-a09e-2af26872dba3",
"name": "Saludo Corporativo inicial2",
"description": "El agente debe presentarse con su nombre completo...",
"type": "boolean",
"weight": 34
},
{
"id": "5718a64e-43e6-4959-90a6-19946b44249c",
"name": "Escucha Activa",
"description": "El agente no interrumpe al cliente...",
"type": "scale",
"weight": 33
},
{
"id": "d34172c8-6bf7-486e-aced-d35dc8c2c283",
"name": "Manejo de Objeciones",
"description": "Ante una objecion o rechazo del cliente...",
"type": "scale",
"weight": 33
},
{
"id": "58f6bc79-3eda-4e67-b762-52466145850a",
"name": "cierre de inversion",
"description": "consigue cerrar la venta/inversion satisfactoriamente",
"type": "strict",
"weight": 0
}
],
"created_at": "2026-03-07T22:53:28.735002+00:00"
}
],
"count": 4
}
}⌘I