Skip to main content
GET
/
knowledge-hub
/
folders
/
{folder_id}
Get folder
curl --request GET \
  --url https://api.exec.com/rest/v1/knowledge-hub/folders/{folder_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "f1a2b3c4d5e6",
  "name": "Sales",
  "emoji": "💼",
  "parent": null,
  "visibility": "workspace",
  "item_count": 12,
  "subfolder_count": 3,
  "created_at": "2026-05-01T09:00:00Z",
  "updated_at": "2026-05-10T10:00:00Z"
}

Authorizations

Authorization
string
header
required

API key created in Settings > API.

Format: exec_live_ followed by 40 alphanumeric characters.

Path Parameters

folder_id
string
required

The folder's unique identifier (UUID)

Response

Folder detail

A Knowledge Hub folder (also called a Space or Hub) that groups pages and sources.

id
string

Unique folder identifier (UUID)

name
string

Folder name

emoji
string | null

Emoji icon shown next to the folder

parent
string | null

UUID of the parent folder, or null for a top-level folder

visibility
enum<string>

Visibility scope of the folder

Available options:
private,
workspace,
global
item_count
integer

Number of non-archived pages directly in this folder

subfolder_count
integer

Number of direct child folders

created_at
string<date-time>
updated_at
string<date-time>