List suite executions
curl --request GET \
--url https://api.goyappr.com/agent-eval/suites/{id}/runsimport requests
url = "https://api.goyappr.com/agent-eval/suites/{id}/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.goyappr.com/agent-eval/suites/{id}/runs', 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.goyappr.com/agent-eval/suites/{id}/runs",
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.goyappr.com/agent-eval/suites/{id}/runs"
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.goyappr.com/agent-eval/suites/{id}/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.goyappr.com/agent-eval/suites/{id}/runs")
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{
"data": [
{
"suite_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"suite_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"total_runs": 123,
"completed": 123,
"in_flight": 123,
"cancelled": 123,
"passed": 123,
"failed": 123,
"total_cost_cents": 123,
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"score_avg": 123,
"pass_rate": 123
}
]
}{
"error": "<string>",
"code": "<string>"
}Suites
List Suite Executions
List past executions of one suite, newest-first. Each entry is an
aggregate roll-up — fetch one execution’s per-run details with
GET /agent-eval/suites/{id}/runs/{suite_run_id}.
GET
/
agent-eval
/
suites
/
{id}
/
runs
List suite executions
curl --request GET \
--url https://api.goyappr.com/agent-eval/suites/{id}/runsimport requests
url = "https://api.goyappr.com/agent-eval/suites/{id}/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.goyappr.com/agent-eval/suites/{id}/runs', 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.goyappr.com/agent-eval/suites/{id}/runs",
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.goyappr.com/agent-eval/suites/{id}/runs"
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.goyappr.com/agent-eval/suites/{id}/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.goyappr.com/agent-eval/suites/{id}/runs")
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{
"data": [
{
"suite_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"suite_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"total_runs": 123,
"completed": 123,
"in_flight": 123,
"cancelled": 123,
"passed": 123,
"failed": 123,
"total_cost_cents": 123,
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"score_avg": 123,
"pass_rate": 123
}
]
}{
"error": "<string>",
"code": "<string>"
}Past executions of one suite, newest-first. Each entry is an aggregate roll-up — fetch one execution’s per-run details via
GET /agent-eval/suites/{id}/runs/{suite_run_id}.
Useful for rendering an execution history (a CI dashboard view of “every time this suite ran”) without paging through individual runs.⌘I