list_load_tests
List the project's load tests — features of kind load, authored in the app's Load section (separate from the functional features list_features returns). Only load tests with status generated are runnable.
Request
GET /api/v1/ops/projects/{project}/load
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
project | path | string | yes | The project's public id. |
- cURL
- CLI
- MCP
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/load"
testvibe load list
Tool list_load_tests — optional project.
Response
[
{
"id": 31,
"name": "Checkout under load",
"status": "generated",
"updatedUtc": "2026-06-14T09:12:05Z"
}
]
Pass the id to run_load_test.
Errors
| HTTP | When |
|---|---|
404 not_found | No such project in this workspace. |