> ## 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.

# List Suite Executions

> List past executions of one suite, newest-first. Each entry is an
aggregate roll-up — fetch one execution's per-run details with
`GET /agent-eval/suites/{id}/runs/{suite_run_id}`.


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.


## OpenAPI

````yaml GET /agent-eval/suites/{id}/runs
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /agent-eval/suites/{id}/runs:
    parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Agent Eval
      summary: List suite executions
      description: |
        List past executions of one suite, newest-first. Each entry is an
        aggregate roll-up — fetch one execution's per-run details with
        `GET /agent-eval/suites/{id}/runs/{suite_run_id}`.
      operationId: listSuiteRuns
      responses:
        '200':
          description: Past suite executions.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SuiteRunSummary'
        '404':
          description: Suite not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    SuiteRunSummary:
      type: object
      description: |
        Aggregate roll-up of one suite execution. Computed on demand from the
        eval_runs grouped by suite_run_id. The `runs` array (per-run details)
        is added by the per-execution endpoint but omitted from list responses.
      required:
        - suite_run_id
        - suite_id
        - total_runs
        - completed
        - in_flight
        - passed
        - failed
        - cancelled
        - total_cost_cents
      properties:
        suite_run_id:
          type: string
          format: uuid
        suite_id:
          type: string
          format: uuid
          nullable: true
        started_at:
          type: string
          format: date-time
          nullable: true
          description: Earliest started_at across runs.
        ended_at:
          type: string
          format: date-time
          nullable: true
          description: Latest ended_at across runs. null until in_flight === 0.
        total_runs:
          type: integer
        completed:
          type: integer
          description: Runs with status='completed'.
        in_flight:
          type: integer
          description: >-
            Runs with status in (queued, running). 0 means the suite has
            settled.
        cancelled:
          type: integer
        passed:
          type: integer
          description: Completed runs with pass_fail=true.
        failed:
          type: integer
          description: Completed runs with pass_fail=false.
        score_avg:
          type: number
          nullable: true
          description: Mean of completed runs' scores. null when 0 completed.
        pass_rate:
          type: number
          nullable: true
          description: passed / completed (0..1). null when 0 completed.
        total_cost_cents:
          type: integer
          description: Sum across all runs in this suite_run.
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````