v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-181,0851,7264.5 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)

page[number]integer
page[size]integer

Response

Returns paginated list of test runs for the specified test

Example response

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