---
title: "Start evaluation run"
method: POST
path: "/api/v1/public/evaluation/runs"
tags: ["public"]
---

# Start evaluation run

`POST /api/v1/public/evaluation/runs`

Start a bounded evaluation matrix and return its initial running state idempotently.

## Headers

- `Idempotency-Key` string, required

## Request body

- StartEvaluationRunRequest
  - `useCaseId` string, required
  - `agentId` string, nullable
  - `personaIds` string[], required
  - `scenarioIds` string[], required
  - `name` string, nullable

## Response `201`

Successful Response

- EvaluationRunResponse
  - `id` string, required
  - `workspaceId` string, required
  - `useCaseId` string, required
  - `useCaseName` string, nullable
  - `agentId` string, nullable
  - `name` string, nullable
  - `status` string, required
  - `startedAt` string, date-time, nullable
  - `completedAt` string, date-time, nullable
  - `results` EvaluationResultResponse[]
    - `id` string, required
    - `runId` string, required
    - `personaId` string, required
    - `scenarioId` string, required
    - `personaName` string, nullable
    - `scenarioName` string, nullable
    - `status` string, required
    - `leadId` string, nullable
    - `callId` string, nullable
    - `transcript` string, nullable
    - `score` number, nullable
    - `passed` boolean, nullable
    - `evaluationNotes` string, nullable
    - `suggestions` unknown
    - `criteriaResults` unknown
    - `startedAt` string, date-time, nullable
    - `completedAt` string, date-time, nullable
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `passCount` integer
  - `failCount` integer
  - `totalCount` integer
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/outcallerai/apis/fastapi.md) · [All operations](https://skmtc.net/outcallerai/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/outcallerai/fastapi/revisions/2a1adc380310/schema)
