Skip to main content
SecretsRetrieve all secrets stored in your account.
TestMu AI
StatusCommunityBlog
Secrets

Retrieve all secrets stored in your account.

This API lets you fetch all the secrets associated with your [username](https://www.lambdatest.com/support/docs/hyperexecute-how-to-get-my-username-and-access-key/). You get a comprehensive list of your stored confidential information, making it easier to manage and verify your secrets.

GET
/v1.0/secrets/list/{username}
Retrieve all secrets stored in your account.
curl --request GET \
--url "https://api.hyperexecute.cloud/v1.0/secrets/list/{username}" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
"TestSecret"
],
"status": "success"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

usernamestringrequired

Enter your LambdaTest username

Response

application/json

Successful operation

dataarray
statusstring
Retrieve all secrets stored in your account.
curl --request GET \
--url "https://api.hyperexecute.cloud/v1.0/secrets/list/{username}" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
"TestSecret"
],
"status": "success"
}