List pre-built LLM evaluators available for use
curl --request GET \
--url https://api.trulayer.ai/v1/eval-catalogimport requests
url = "https://api.trulayer.ai/v1/eval-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.trulayer.ai/v1/eval-catalog', 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.trulayer.ai/v1/eval-catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.trulayer.ai/v1/eval-catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trulayer.ai/v1/eval-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trulayer.ai/v1/eval-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"evaluators": [
{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"cost_tier": "low",
"example_input": "<string>",
"example_output": "<string>"
}
]
}eval
List pre-built LLM evaluators available for use
Returns the static catalog of TruLayer’s pre-built LLM-judge evaluators.
This endpoint is public (no auth required) so SDKs and dashboards can
render a picker before a session is established. The response is safe
to cache aggressively. Use a catalog entry by passing its name as
config.preset when triggering an eval (POST /v1/eval).
GET
/
v1
/
eval-catalog
List pre-built LLM evaluators available for use
curl --request GET \
--url https://api.trulayer.ai/v1/eval-catalogimport requests
url = "https://api.trulayer.ai/v1/eval-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.trulayer.ai/v1/eval-catalog', 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.trulayer.ai/v1/eval-catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.trulayer.ai/v1/eval-catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trulayer.ai/v1/eval-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trulayer.ai/v1/eval-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"evaluators": [
{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"cost_tier": "low",
"example_input": "<string>",
"example_output": "<string>"
}
]
}Response
200 - application/json
Catalog entries
Show child attributes
Show child attributes