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

list_projects

List the projects in the workspace (id, name, base URL).

List the projects your API key can see. Use the returned id as {project} in every other route.

Request

GET /api/v1/ops/projects

No parameters.

curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
  "$TESTVIBE_SERVER/api/v1/ops/projects"
testvibe projects

Tool list_projects — no arguments.

Response

[
  {
    "id": "7f3c9a4e-2b1d-4e8a-9c6f-0d5b8a1e2f34",
    "name": "Acme Shop",
    "baseUrl": "https://shop.acme.example"
  }
]

Errors

HTTP
When

401 unauthorized

Missing or invalid API key.

Last updated

Was this helpful?