Get Secret
curl --request GET \
--url https://api.evergreens.ai/v1/secrets/{id} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"id": "a8ad4bc6-ffbc-4ed0-b90b-542347fd8298",
"name": "MY_API_KEY",
"value": "********",
"created_at": "2026-05-26T02:23:44.710Z",
"updated_at": "2026-05-26T02:23:44.710Z"
}
}
GET
/
v1
/
secrets
/
{id}
Get Secret
curl --request GET \
--url https://api.evergreens.ai/v1/secrets/{id} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"id": "a8ad4bc6-ffbc-4ed0-b90b-542347fd8298",
"name": "MY_API_KEY",
"value": "********",
"created_at": "2026-05-26T02:23:44.710Z",
"updated_at": "2026-05-26T02:23:44.710Z"
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.evergreens.ai/llms.txt
Use this file to discover all available pages before exploring further.

SecretEntityRetrieve the details of a specific secret by its unique identifier (ID). This endpoint allows you to access the name, masked value, and timestamps of a secret stored in your Tedi account.
The unique identifier of the secret.
The name of the secret.
The value of the secret. For security reasons, the actual value is masked in the response and will appear as
"********".The timestamp when the secret was created.
The timestamp when the secret was last updated.
{
"status": true,
"data": {
"id": "a8ad4bc6-ffbc-4ed0-b90b-542347fd8298",
"name": "MY_API_KEY",
"value": "********",
"created_at": "2026-05-26T02:23:44.710Z",
"updated_at": "2026-05-26T02:23:44.710Z"
}
}
Was this page helpful?
⌘I