curl --request GET \
--url https://api.tusky.io/v2/environments/{environmentId}{
"id": "<string>",
"name": "<string>",
"encrypted": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}curl --request GET \
--url https://api.tusky.io/v2/environments/{environmentId}{
"id": "<string>",
"name": "<string>",
"encrypted": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}curl https://api.tusky.io/v2/environments/env_abc123def456 \
-H "Api-Key: YOUR_API_KEY"
{
"id": "env_abc123def456",
"name": "My First Environment",
"encrypted": false,
"createdAt": "2025-07-01T12:00:00.000Z",
"updatedAt": "2025-07-01T12:00:00.000Z"
}