Skip to main content
GET
/
secrets
List secrets
curl --request GET \
  --url https://api.quiva.ai/secrets \
  --header 'Authorization: Bearer <token>'
[
  {
    "key": "api-key"
  },
  {
    "key": "database-password"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.quiva.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:100

Maximum number of secrets to return (default: 100)

Required range: x >= 1
reveal
boolean
default:false

Whether to include secret values in the response

Response

List of secrets retrieved successfully

key
string
required

The unique identifier for the secret

value
string

The secret value (only included when reveal=true)