Transcript LOL API
GET
/spaces/{spaceId}/folders

List folders

List all folders in the workspace. Returns a flat list of all folders.

/spaces/{spaceId}/folders

The Authorization access token

Authorization

x-api-key<token>

In: header

Path Parameters

spaceId
Required
string

ID of the workspace. You can find from the url in dashboard when you open the workspace or using the list workspaces endpoint.

curl -X GET "https://transcript.lol/api/v1/spaces/string/folders" \
  -H "Authorization: <token>"

List of folders

[
  {
    "id": "string",
    "createdAt": "string",
    "updatedAt": "string",
    "name": "string",
    "workspaceId": "string",
    "parentFolderId": "string"
  }
]