Skip to main content

Documentation Index

Fetch the complete documentation index at: https://databridge-r-img.mintlify.app/llms.txt

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

def list_folders() -> List[Folder]

Returns

  • List[Folder]: Collection of folders the current auth context can access.

Examples

from morphik import Morphik

db = Morphik()

for folder in db.list_folders():
    print(folder.name, folder.id)