For the complete documentation index, see llms.txt. This page is also available as Markdown.

list_load_tests

List the project's 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 -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.

Last updated

Was this helpful?