curl -X GET \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
https://api.together.ai/v1/deployments/secrets/my-secret{
"created_at": "<string>",
"created_by": "<string>",
"description": "<string>",
"id": "<string>",
"last_updated_by": "<string>",
"name": "<string>",
"object": "<string>",
"updated_at": "<string>"
}Retrieve details of a specific secret by its ID or name
curl -X GET \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
https://api.together.ai/v1/deployments/secrets/my-secret{
"created_at": "<string>",
"created_by": "<string>",
"description": "<string>",
"id": "<string>",
"last_updated_by": "<string>",
"name": "<string>",
"object": "<string>",
"updated_at": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Secret ID or name
Secret details
CreatedAt is the ISO8601 timestamp when this secret was created
CreatedBy is the identifier of the user who created this secret
Description is a human-readable description of the secret's purpose
ID is the unique identifier for this secret
LastUpdatedBy is the identifier of the user who last updated this secret
Name is the name/key of the secret
Object is the type identifier for this response (always "secret")
UpdatedAt is the ISO8601 timestamp when this secret was last updated
Was this page helpful?