Integrate your application with Anthropic
Create an account + Generate an API Key
Set QUALIFIRE_API_KEY as an environment variable
QUALIFIRE_API_KEY=<your API key>
Modify the base path and add a X-Qualifire-Api-Key header
defaultHeaders
import Anthropic from "@anthropic-ai/sdk"; const anthropic = new Anthropic({ baseURL: "https://proxy.qualifire.ai/api/providers/anthropic", apiKey: process.env.ANTHROPIC_API_KEY, defaultHeaders: { "X-Qualifire-Api-Key": process.env.QUALIFIRE_API_KEY, }, });