Skip to main content
GET
/
api
/
vault
List all vault secret names
curl --request GET \
  --url https://your-instance.example.com/api/vault \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "name": "TWILIO_AUTH_TOKEN"
    },
    {
      "name": "OPENAI_API_KEY"
    },
    {
      "name": "STRIPE_SECRET"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Secret names returned

Response from GET /api/vault.

success
enum<boolean>
required
Available options:
true
data
object[]
required