Claudette requires an Anthropic API key to communicate with the Claude API. You can configure a single key for personal use or define multiple named keys to switch between accounts — for example, separate work and personal keys.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/barryceelen/claudette/llms.txt
Use this file to discover all available pages before exploring further.
Single API key setup
The simplest configuration is a single string value forapi_key in your settings file.
Get your API key at console.anthropic.com/settings/keys.
Multiple API keys
When you need to switch between accounts — such as a work key and a personal key — defineapi_key as an object with a keys array and an active_key index.
keys requires a name (shown in the selection panel) and a key (the API key string). The active_key value is a zero-based index pointing to the currently active key.
To switch the active key at runtime, open the command palette and run Claudette: Switch API Key. A quick panel lists all named keys; selecting one updates active_key and saves your settings immediately.
The Claudette: Switch API Key command is only enabled when two or more keys are defined in the
keys array.Custom base URL
If you are using a proxy, a self-hosted endpoint, or an API-compatible service, setbase_url to point to that endpoint. The default is https://api.anthropic.com/v1/.
verify_ssl to false to skip SSL certificate verification.