Skip to main content

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
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/variables"

Response

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

Errors

HTTPWhen
404 not_foundNo such project in this workspace.