Skip to main content

Overview

Laminar automatically instruments the official Anthropic package with a single line of code, allowing you to trace and monitor all your Anthropic API calls without modifying your existing code. This provides complete visibility into your AI application’s performance, costs, and behavior.

Getting Started

1. Install Laminar and Anthropic

2. Set up your environment variables

Store your API keys in a .env file:
Then load them in your application using a package like dotenv.
Using Anthropic inside Next.js? The Vercel AI SDK page covers the Next.js-specific setup (serverExternalPackages, instrumentation.ts, and Laminar.patch for direct SDK clients).

3. Initialize Laminar

Just add a single line at the start of your application or file to instrument Anthropic with Laminar.
import Anthropic from '@anthropic-ai/sdk' imports the module. Pass it to instrumentModules, then create the client with new Anthropic.Anthropic().

4. Use Anthropic as usual

All Anthropic API calls are now automatically traced in Laminar.

Monitoring Anthropic usage

After instrumenting your Anthropic calls with Laminar, you’ll be able to:
  1. View detailed traces of each Anthropic API call, including request and response
  2. Track token usage and cost across different models
  3. Monitor latency and performance metrics
  4. Open LLM span in Playground for prompt engineering
  5. Debug issues with failed API calls or unexpected model outputs
Visit your Laminar dashboard to view your Anthropic traces and analytics.

Enrich your Anthropic traces

  • Attach sessions, user IDs, metadata, and tags to Anthropic spans via the SDK reference.
  • Wrap the functions around your Anthropic calls with observe and mark them as TOOL spans so they show up in the transcript.

OpenAI

Trace the OpenAI SDK directly in TypeScript and Python.

Gemini

Trace Gemini calls made with the Google Gen AI SDK.

OpenRouter

Trace OpenRouter requests with model and cost attribution.

Claude Agent SDK

Trace Claude Agent SDK runs and their subagents.

Vercel AI SDK

Trace generateText and streamText in Next.js and Node.js.

All integrations

Browse every provider, framework, coding agent, and browser integration Laminar supports.