Get execution history for a test case by title
Returns the execution history of a test case identified by its visible title (the name
shown in the UI). Internally, the title is resolved to the canonical full title
(path/to/spec > describe > title) by matching the most recently executed test case.
Each entry represents one execution with its status, duration, retries, platform, branch,
and associated test run counter.
Also includes pre-computed summary metrics (execution count, pass/fail/flaky rates, average duration), unique errors encountered, and per-platform and per-environment breakdowns.
Results are ordered by test run start time (newest first). Use offset and limit for pagination.
Authorizations
User PAT (td_pat_) scoped to the target project
Path Parameters
The project identifier (e.g. project_abc123). Must match the project associated with your PAT.
Query Parameters
The test case title as shown in the UI (e.g. should display login form). URL-encode if it contains special characters. If multiple tests share the same title, the most recently executed one is used — inspect data.testCase.fullTitle in the response to see which was resolved.
Number of history entries to return (1–100, default 20). Upstream fetch limit may snap to 50, 100, 200, or 500 before client-side pagination.
1 <= x <= 100Number of entries to skip (for pagination). Default 0.
x >= 0