Skip to main content
GET
/
v2
/
folders
/
{folderId}
Get Folder
curl --request GET \
  --url https://api.tusky.io/v2/folders/{folderId}
{
  "id": "<string>",
  "name": "<string>",
  "environmentId": "<string>",
  "parentId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}
Retrieve a folder by ID.

Path Parameters

folderId
string
required
The folder ID.

Response

id
string
Folder ID.
name
string
Folder name.
environmentId
string
Parent environment ID.
parentId
string
Parent folder ID, or null.
createdAt
string
ISO 8601 creation timestamp.
updatedAt
string
ISO 8601 last-updated timestamp.

Example

curl https://api.tusky.io/v2/folders/folder_xyz789 \
  -H "Api-Key: YOUR_API_KEY"

Response

{
  "id": "folder_xyz789",
  "name": "Photos",
  "environmentId": "env_abc123",
  "parentId": null,
  "createdAt": "2026-03-06T12:00:00Z",
  "updatedAt": "2026-03-06T12:00:00Z"
}