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

list_variables

List the project's variables with their values.

List the project's variables. Variables are plaintext — values come back in full (unlike secrets).

Request

GET /api/v1/ops/projects/{project}/variables
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/variables"
testvibe vars list

Tool list_variables — optional project. Read-only.

Response

[
  {
    "name": "BASE_CURRENCY",
    "value": "EUR",
    "updatedUtc": "2026-07-05T09:12:41Z"
  }
]

Errors

HTTP
When

404 not_found

No such project in this workspace.

Last updated

Was this helpful?