Skip to main content
GET
/
v1
/
folders
List folders
curl --request GET \
  --url https://api.uselora.com/v1/folders \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "linkCount": 4503599627370495,
      "isSystem": true,
      "workspaceId": "<string>",
      "creatorId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://uselora.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Opaque pagination token returned as nextCursor from the previous page. Omit on the first request.

limit
integer
default:50

Page size. Out-of-range values are clamped to [1, 100]; defaults to 50.

Required range: 1 <= x <= 100

Response

Paginated list of folders.

Paginated list of folders visible to the caller

items
FolderListItem · object[]
required
nextCursor
string | null
required

Cursor for the next page, or null if this is the last page.

Pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z__[0-9abcdefghjkmnpqrstvwxyz]{8}$