Get secret API Reference
GET
/tenants/{tenant}/secrets/{name}
const url = 'https://api.kupe.cloud/api/v1/tenants/acme/secrets/database-creds';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.kupe.cloud/api/v1/tenants/acme/secrets/database-creds \ --header 'Authorization: <Authorization>'Retrieve details for a specific managed secret, including its vault path, sync target configuration, and current sync status across clusters.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” tenant
required
string
Tenant name
name
required
string
Secret name
Responses
Section titled “ Responses ”Secret details
Media type application/json
object
createdAt
string
name
string
resourceVersion
string
secretPath
string
status
object
conditions
Array<object>
object
key
additional properties
phase
string
syncStatuses
Array<object>
object
key
additional properties
sync
Array<object>
object
cluster
string
namespace
string
secretName
string
Example
{ "createdAt": "2026-03-10T09:15:00Z", "name": "database-creds", "resourceVersion": "582019", "secretPath": "services/database/credentials", "status": { "phase": "Synced" }, "sync": [ { "cluster": "production", "namespace": "app", "secretName": "db-credentials" } ]}Headers
Section titled “ Headers ” ETag
string
Resource version for optimistic locking
Invalid name
Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{ "code": "example", "error": "example", "field": "example", "message": "example", "severity": "example"}Missing or invalid authentication
Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{ "code": "example", "error": "example", "field": "example", "message": "example", "severity": "example"}Not a member of this tenant
Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{ "code": "example", "error": "example", "field": "example", "message": "example", "severity": "example"}Secret not found
Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{ "code": "example", "error": "example", "field": "example", "message": "example", "severity": "example"}Rate limit exceeded
Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{ "code": "example", "error": "example", "field": "example", "message": "example", "severity": "example"}