Get all available test suites
cURL
curl --request GET \ --url https://api.example.com/api/platform/testSuites
{ "testSuites": [ {} ] }
GET /api/platform/testSuites
"public"
"private"
curl -X GET "https://api.agentdiff.dev/api/platform/testSuites?name=Slack" \ -H "X-API-Key: ad_live_sk_..."
{ "testSuites": [ { "id": "suite-123", "name": "Slack Bench", "description": "Core Slack agent capabilities", "templateService": "slack", "templateName": "slack_bench_default", "testCount": 20, "visibility": "public", "createdAt": "2025-01-01T00:00:00Z" }, { "id": "suite-456", "name": "Linear Bench", "description": "Linear GraphQL operations", "templateService": "linear", "templateName": "linear_expanded", "testCount": 40, "visibility": "public", "createdAt": "2025-01-01T00:00:00Z" } ] }
# List all suites suites = client.list_test_suites() for s in suites.testSuites: print(f"{s.name}: {s.testCount} tests") # Filter by name slack_suites = client.list_test_suites(name="Slack")