Skip to main content

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
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/load"

Response

[
{
"id": 31,
"name": "Checkout under load",
"status": "generated",
"updatedUtc": "2026-06-14T09:12:05Z"
}
]

Pass the id to run_load_test.

Errors

HTTPWhen
404 not_foundNo such project in this workspace.