Skip to main content
GET
/
v1
/
knowledge-base
/
evals
/
runs
List evaluation runs across the org (including runs whose suite was deleted)
curl --request GET \
  --url https://api-sandbox.featherhq.com/v1/knowledge-base/evals/runs \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "suite_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "suite_name_snapshot": "<string>",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "total_cases": 123,
      "completed_cases": 123,
      "passed_cases": 123,
      "failed_cases": 123,
      "errored_cases": 123,
      "average_score": 123,
      "error_message": "<string>",
      "kb_ids": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "prefer_draft": true,
      "version_overrides": {},
      "generator_model_override": "<string>",
      "judge_model_override": "<string>",
      "pass_threshold_snapshot": 123,
      "retrieval_top_k_snapshot": 123,
      "total_input_tokens": 123,
      "total_output_tokens": 123,
      "total_cost_usd": 123,
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

x-api-key
string
header
required

Query Parameters

suite_id
string<uuid> | null

Optional filter to a specific suite. Unlike /suites/{suite_id}/runs, this endpoint does not 404 when the suite has been deleted — pass the original suite_id and historical runs still surface via suite_name_snapshot.

limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string | null

Response

Successful Response

items
KBEvalRunResponse · object[]
required
has_more
boolean
required
next_cursor
string | null