Skip to main content

Step 1: Get Your API Key

Create an account and get your API key from Settings → API Keys.

Step 2: Install Packages

Choose your language and install the Observ SDK along with your preferred provider SDK:
Install Observ SDK and your provider SDK:
npm install observ-sdk
Then install one or more provider SDKs:
npm install @anthropic-ai/sdk
npm install openai
Also works for xAI and OpenRouter (they use OpenAI-compatible APIs).
npm install @mistralai/mistralai

Complete Installation (All Providers)

npm install observ-sdk

# Install providers (pick one or more)
npm install @anthropic-ai/sdk      # Anthropic
npm install openai                 # OpenAI/xAI/OpenRouter
npm install @mistralai/mistralai   # Mistral

Alternative Package Managers

yarn add observ-sdk @anthropic-ai/sdk

Next Steps