list_secrets
List the project's secrets.
warning
Names only. Secrets are write-only — no API ever returns a secret's value. They're decrypted only server-side at dispatch.
Request
GET /api/v1/ops/projects/{project}/secrets
| 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/secrets"
testvibe secrets list
Tool list_secrets — optional project. Read-only.
Response
[
{
"name": "MAILSLURP_API_KEY",
"updatedUtc": "2026-07-05T09:15:03Z"
}
]
Errors
| HTTP | When |
|---|---|
404 not_found | No such project in this workspace. |