Skip to main content
GET
/
agent-eval
/
suites
/
{id}
/
runs
List suite executions
curl --request GET \
  --url https://api.goyappr.com/agent-eval/suites/{id}/runs
{
  "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
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.goyappr.com/llms.txt

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

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.

Path Parameters

id
string<uuid>
required

Response

Past suite executions.

data
object[]
required