Skip to main content
GET
/
test-runs
/
{test_run_id}
/
requests
List test run requests
curl --request GET \
  --url https://api.trymaitai.ai/api/v1/test-runs/{test_run_id}/requests \
  --header 'X-Maitai-Api-Key: <api-key>'
{
  "data": [
    {
      "request_id": "req_abc123",
      "test_run_id": 30,
      "score": 0.95,
      "passed": true
    }
  ]
}

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Path Parameters

test_run_id
integer
required

Query Parameters

offset
integer
default:0

Number of items to skip.

Required range: x >= 0
limit
integer
default:25

Maximum number of items to return.

Required range: 1 <= x <= 100

Response

200 - application/json

List test run requests.

data
any