Skip to main content
The SDK handles authentication automatically using your API key.

Get your API key

  1. Sign in to the Notte Console
  2. Navigate to your account settings
  3. Generate or copy your API key
Set the NOTTE_API_KEY environment variable:
export NOTTE_API_KEY=your_api_key_here
Then initialize the client:
from notte_sdk import NotteClient

client = NotteClient()

Direct initialization

Pass the API key directly:
from notte_sdk import NotteClient

client = NotteClient(api_key="your_api_key_here")