curl --request GET \
--url https://api.tusky.io/v2/environments{
"data": [
{
"id": "<string>",
"name": "<string>",
"encrypted": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}curl --request GET \
--url https://api.tusky.io/v2/environments{
"data": [
{
"id": "<string>",
"name": "<string>",
"encrypted": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}1, maximum 100.Show Environment object properties
null if there are no more results.curl "https://api.tusky.io/v2/environments?limit=10" \
-H "Api-Key: YOUR_API_KEY"
{
"data": [
{
"id": "env_abc123def456",
"name": "My First Environment",
"encrypted": false,
"createdAt": "2025-07-01T12:00:00.000Z",
"updatedAt": "2025-07-01T12:00:00.000Z"
},
{
"id": "env_ghi789jkl012",
"name": "Encrypted Environment",
"encrypted": true,
"createdAt": "2025-06-15T08:30:00.000Z",
"updatedAt": "2025-06-20T14:00:00.000Z"
}
],
"nextCursor": "eyJpZCI6InZhdWx0X2doaTc4OWprbDAxMiJ9",
"hasMore": true
}