Skip to main content

Official SDKs

We provide two lightweight open-source SDKs to help you integrate our API quickly and efficiently.

Installation

pip install opennote

Quick Start

from opennote import OpennoteClient
import os

# Initialize the client
client = OpennoteClient(api_key=os.getenv("OPENNOTE_API_KEY"))

# Make your first request
journals = client.journals.list()
print(f"Found {len(journals.journals)} journals")

Resources

Both SDKs are open-source and welcome contributions! Found a bug or want to add a feature? Please open an issue or submit a pull request. For examples and tutorials, check out the /examples directories in each repository for your language of choice. All schemas are available in the API Reference.
I