Skip to main content
POST
/
workflow-test-runs
/
compare
Compare workflow test runs
curl --request POST \
  --url https://api.trymaitai.ai/api/v1/workflow-test-runs/compare \
  --header 'Content-Type: application/json' \
  --header 'X-Maitai-Api-Key: <api-key>' \
  --data '
{
  "test_run_ids": [
    301,
    302
  ],
  "offset": 0,
  "limit": 25
}
'
{
  "data": [
    "<unknown>"
  ],
  "pagination": {
    "total": 123,
    "offset": 123,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.trymaitai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Body

application/json
test_run_ids
integer[]
required
offset
integer
limit
integer

Response

200 - application/json

Paginated results.

data
any[]
pagination
object