Automate Load Tests
Kick off load tests from CI, the testvibe CLI, or an AI tool — the same load runs you dispatch from the app, driven over the API.
List your load tests
testvibe load listcurl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/load"Run a load test
# Dispatch and return immediately
testvibe load run "Checkout under load"
# Or wait for it to finish (handy as a CI gate)
testvibe load run "Checkout under load" --waitcurl -X POST -H "Authorization: Bearer $TESTVIBE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"siteUrl": "https://staging.example.com"}' \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/load/31/run"Automate on a recurring schedule
Full reference
Related Help
Last updated
Was this helpful?
