list_variables
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
- CLI
- MCP
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. |