Skip to main content
GET
/
v1
/
eval-runs
/
{id}
/
export
Export eval run results
curl --request GET \
  --url https://api.trulayer.ai/v1/eval-runs/{id}/export \
  --header 'Authorization: Bearer <token>'
{
  "run": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "dataset_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "eval_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "pending",
    "item_count": 123,
    "completed_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "started_at": "2023-11-07T05:31:56Z",
    "completed_at": "2023-11-07T05:31:56Z",
    "error_message": "<string>"
  },
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "trace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metric_name": "<string>",
      "evaluator_type": "<string>",
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "score": 123,
      "label": "<string>",
      "reasoning": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.trulayer.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

SDK API key (tl_...) or Clerk session JWT

Path Parameters

id
string<uuid>
required

Response

Eval run export

Full eval run payload suitable for download. The run field carries the run metadata; items is the set of evaluation rows that were produced by this run (one per scored trace).

run
object
required
items
object[]
required