For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign inBook a demo
DocsReferenceChangelog
DocsReferenceChangelog
  • Introduction
    • Overview
    • Errors
  • SDK
    • Overview
    • Decorators
    • Run Evaluation
  • API
      • GETList Evaluations
      • POSTCreate Evaluation
      • POSTAdd Evaluators
      • DELRemove Evaluator
      • GETGet Evaluation
      • DELDelete Evaluation
      • GETList Runs for Evaluation
      • POSTCreate Run
      • POSTAdd Existing Run
      • DELRemove Run
      • PATCHUpdate Evaluation Run
      • POSTAdd Logs to Run
      • GETGet Evaluation Stats
      • GETGet Logs for Evaluation
LogoLogo
Sign inBook a demo
APIEvaluations

List Runs for Evaluation

GET
https://api.humanloop.com/v5/evaluations/:id/runs
GET
/v5/evaluations/:id/runs
$curl https://api.humanloop.com/v5/evaluations/id/runs \
> -H "X-API-KEY: <apiKey>"
1{
2 "runs": [
3 {
4 "id": "id",
5 "orchestrated": true,
6 "added_at": "2024-01-15T09:30:00Z",
7 "created_at": "2024-01-15T09:30:00Z",
8 "status": "pending",
9 "control": true,
10 "dataset": {
11 "path": "path",
12 "id": "id",
13 "name": "name",
14 "version_id": "version_id",
15 "created_at": "2024-01-15T09:30:00Z",
16 "updated_at": "2024-01-15T09:30:00Z",
17 "last_used_at": "2024-01-15T09:30:00Z",
18 "datapoints_count": 1
19 },
20 "version": {
21 "path": "path",
22 "id": "id",
23 "model": "model",
24 "name": "name",
25 "version_id": "version_id",
26 "created_at": "2024-01-15T09:30:00Z",
27 "updated_at": "2024-01-15T09:30:00Z",
28 "last_used_at": "2024-01-15T09:30:00Z",
29 "version_logs_count": 1,
30 "total_logs_count": 1,
31 "inputs": [
32 {
33 "name": "name"
34 }
35 ]
36 },
37 "created_by": {
38 "id": "id",
39 "email_address": "email_address"
40 }
41 }
42 ]
43}
List all Runs for an Evaluation.
Was this page helpful?
Previous

Create Run

Next
Built with

Authentication

X-API-KEYstring
API Key authentication via header

Path parameters

idstringRequired
Unique identifier for Evaluation.

Response

Successful Response
runslist of objects
The Runs in the Evaluation.

Errors

422
List Runs for Evaluation Evaluations ID Runs Get Request Unprocessable Entity Error