Skip to main content

list_coverage_runs

List the project's recent execution-coverage runs (clone → build → run tests with coverage → ingest the report), newest first.

Request

GET /api/v1/ops/projects/{project}/coverage/runs[?limit=20]
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
limitqueryintegernoMax runs to return (default 20, max 100).
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/coverage/runs?limit=10"

Response

[
{
"coverageRunId": 12,
"targetId": 5,
"status": "succeeded",
"kind": "dotnet",
"filesReported": 184,
"filesMatched": 180,
"linePct": 57,
"error": null,
"startedUtc": "2026-06-15T08:30:01Z",
"finishedUtc": "2026-06-15T08:34:48Z",
"createdUtc": "2026-06-15T08:29:58Z"
}
]

Errors

HTTPWhen
404 not_foundNo such project in this workspace.