curl --request GET \
--url https://api.runloop.ai/v1/secrets/{name} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "<string>",
"create_time_ms": 123,
"update_time_ms": 123
}Retrieve a Secret by name. The secret value is not included for security.
curl --request GET \
--url https://api.runloop.ai/v1/secrets/{name} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "<string>",
"create_time_ms": 123,
"update_time_ms": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The name of the Secret to retrieve.
Successfully retrieved the Secret. Value is omitted for security.
A Secret represents a key-value pair that can be securely stored and used in Devboxes as environment variables.
The unique identifier of the Secret.
The globally unique name of the Secret. Used as the environment variable name in Devboxes.
Creation time of the Secret (Unix timestamp in milliseconds).
Last update time of the Secret (Unix timestamp in milliseconds).
Was this page helpful?