Skip to main content
GET
/
v1
/
folders
List folders
curl --request GET \
  --url https://public-api.granola.ai/v1/folders \
  --header 'Authorization: Bearer <token>'
{
  "folders": [
    {
      "id": "fol_4y6LduVdwSKC27",
      "object": "folder",
      "name": "Top secret recipes",
      "parent_folder_id": "fol_a74g2hvl98iUHG"
    }
  ],
  "hasMore": true,
  "cursor": "eyJjcmVkZW50aWFsfQ=="
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

The cursor to continue from

Example:

"eyJjcmVkZW50aWFsfQ=="

page_size
integer
default:10

Maximum number of folders to return per page

Required range: 1 <= x <= 30
Example:

10

Response

List of folders

folders
object[]
required
hasMore
boolean
required

Whether there are more folders to fetch

Example:

true

cursor
string | null
required

The cursor to continue from

Example:

"eyJjcmVkZW50aWFsfQ=="