Documentation Index
Fetch the complete documentation index at: https://playgent.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Execute one or more test cases against an agent. Supports running by test case ID, multiple IDs, or tags.
Single test case ID to run
Multiple test case IDs to run
Run all test cases with these tags
Override agent for comparison testing
Run configuration
Run test cases in parallel (default: true)
Maximum retry attempts on failure (default: 0)
Timeout per turn in milliseconds (default: 30000)
Run status: queued, running, completed, failed
Number of test cases in this run
Estimated duration in seconds
WebSocket URL for real-time progress streaming
curl -X POST https://api.playgent.com/v1/runs \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"test_case_id": "tc_xyz789",
"config": {
"parallel": true,
"max_retries": 2,
"timeout_ms": 30000
}
}'
{
"run_id": "run_def456",
"status": "queued",
"test_case_count": 1,
"estimated_duration_s": 45,
"webhook_url": "wss://api.playgent.com/v1/runs/run_def456/stream"
}