curl --request GET \
--url https://api.eigenpal.com/v1/runs/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.eigenpal.com/v1/runs/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.eigenpal.com/v1/runs/{id}', 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.eigenpal.com/v1/runs/{id}",
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://api.eigenpal.com/v1/runs/{id}"
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://api.eigenpal.com/v1/runs/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs/{id}")
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{
"id": "<string>",
"finished": true,
"sampleRank": 0.5,
"timing": {
"createdAt": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"durationMs": 123,
"cancelRequestedAt": "<string>"
},
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
},
"trigger": {
"type": "<string>",
"by": {
"id": "<string>",
"name": "<string>",
"email": "<string>"
},
"email": "<unknown>"
},
"execution": {
"schemaValid": true,
"batchId": "<string>",
"retry": {
"number": 123,
"previousRunId": "<string>",
"nextRun": {
"id": "<string>",
"status": "<string>"
}
},
"review": {
"hasNote": true,
"correctionCount": 0
}
},
"eval": {
"example": "<string>",
"score": 123,
"passed": true,
"exampleId": "<string>"
},
"output": {},
"files": [
{
"name": "<string>",
"role": "<string>",
"path": "<string>",
"stepName": "<string>",
"contentType": "<string>",
"size": 0
}
],
"error": "<string>",
"input": {
"args": "<unknown>",
"files": [
{
"name": "<string>"
}
],
"metadata": "<unknown>"
},
"usage": {
"tokens": {
"input": 123,
"output": 123,
"cacheRead": 123,
"cacheWrite": 123
},
"creditsCharged": 123,
"durationMs": 123,
"llmCallCount": 123,
"ocrPagesProcessed": 123,
"agentTurns": 123
},
"debug": {
"observability": "<unknown>",
"traceId": "<string>"
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Get a run
Fetch one run by id. By default this returns core metadata plus terminal output/error fields. Pass ?expand=input,usage,execution,debug to include detailed sub-objects; expand=execution is also where embedded review and expected artifacts appear.
curl --request GET \
--url https://api.eigenpal.com/v1/runs/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.eigenpal.com/v1/runs/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.eigenpal.com/v1/runs/{id}', 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.eigenpal.com/v1/runs/{id}",
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://api.eigenpal.com/v1/runs/{id}"
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://api.eigenpal.com/v1/runs/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs/{id}")
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{
"id": "<string>",
"finished": true,
"sampleRank": 0.5,
"timing": {
"createdAt": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"durationMs": 123,
"cancelRequestedAt": "<string>"
},
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
},
"trigger": {
"type": "<string>",
"by": {
"id": "<string>",
"name": "<string>",
"email": "<string>"
},
"email": "<unknown>"
},
"execution": {
"schemaValid": true,
"batchId": "<string>",
"retry": {
"number": 123,
"previousRunId": "<string>",
"nextRun": {
"id": "<string>",
"status": "<string>"
}
},
"review": {
"hasNote": true,
"correctionCount": 0
}
},
"eval": {
"example": "<string>",
"score": 123,
"passed": true,
"exampleId": "<string>"
},
"output": {},
"files": [
{
"name": "<string>",
"role": "<string>",
"path": "<string>",
"stepName": "<string>",
"contentType": "<string>",
"size": 0
}
],
"error": "<string>",
"input": {
"args": "<unknown>",
"files": [
{
"name": "<string>"
}
],
"metadata": "<unknown>"
},
"usage": {
"tokens": {
"input": 123,
"output": 123,
"cacheRead": 123,
"cacheWrite": 123
},
"creditsCharged": 123,
"durationMs": 123,
"llmCallCount": 123,
"ocrPagesProcessed": 123,
"agentTurns": 123
},
"debug": {
"observability": "<unknown>",
"traceId": "<string>"
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Authorizations
API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.
Path Parameters
Run id
Query Parameters
Optional sections: input, usage, execution, debug. Terminal runs always include top-level output, files, and error.
Response
Run detail. Expanded sections appear only when requested.
workflow, agent True when the run has reached a terminal status.
Deterministic pseudo-random rank in [0, 1) for this run within the tenant. Use with a sample rate threshold to review a stable subset.
0 <= x <= 1Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Slim execution metadata always present. Pass expand=execution to replace with full RunExecution (WorkflowRunExecution or AgentRunExecution depending on run type).
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Present only when the run is eval-scoped.
Show child attributes
Show child attributes
Completed runs only.
Show child attributes
Show child attributes
Completed runs only. Download with GET /api/v1/runs/:id/artifacts/:path.
Show child attributes
Show child attributes
Terminal failure message. Null when the run succeeded or is still in flight.
expand=input.
Show child attributes
Show child attributes
expand=usage. Null for old runs without telemetry.
Show child attributes
Show child attributes
expand=debug.
Show child attributes
Show child attributes