Skip to main content
GET
/
v1
/
run-test-case
/
{shortId}
/
trace
Get run test case trace
curl --request GET \
  --url https://api.qa.tech/v1/run-test-case/{shortId}/trace \
  --header 'Authorization: Bearer <token>'
{
  "runTestCaseShortId": "<string>",
  "total": 123,
  "limit": 123,
  "offset": 123,
  "steps": [
    {
      "index": 123,
      "startedAt": "<string>",
      "endedAt": "<string>",
      "durationMs": 123,
      "reasoning": "<string>",
      "toolCalls": [
        {
          "name": "<string>",
          "arguments": {}
        }
      ],
      "toolResult": "<string>",
      "screenshotUrl": "<string>"
    }
  ]
}

Path Parameters

shortId
string
required

Query Parameters

query
object
required

Response

200 - application/json

The request has succeeded.

Agent step trace for a run test case, paginated so large traces don't overflow.

runTestCaseShortId
string
required
total
integer<int32>
required

Total number of steps available across the whole trace.

limit
integer<int32>
required
offset
integer<int32>
required
steps
object[]
required