v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Assistants

Get test run history for a specific test

Retrieves paginated execution history for a specific assistant test with filtering options

get/ai/assistants/tests/{test_id}/runs

Path parameters

test_idstring required

Unique identifier of the test.

Query parameters

statusstring

Filter runs by execution status (pending, running, completed, failed, timeout)

Filter runs by execution status (pending, running, completed, failed, timeout)

numberinteger

Page number to retrieve (1-based indexing)

sizeinteger

Number of test runs to return per page (1-100)

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Returns paginated list of test runs for the specified test

Example response

{
  "data": [
    {
      "created_at": "2024-01-24T10:30:00Z",
      "run_id": "987fcdeb-51a2-43d1-b456-426614174000",
      "test_id": "123e4567-e89b-12d3-a456-426614174000",
      "triggered_by": "cron"
    }
  ]
}