Settings
Manage your account and API keys
Account Information
🔑 Your Proxy API Key
Use this key to authenticate your requests to the LLM Observability Platform
⚠️ Keep this key secure. Don't share it or commit it to version control.
Integration Example
# Python Example (works with any LLM provider)
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:8000/v1",
api_key="null"
)
response = client.chat.completions.create(
model="gpt-4o-mini", # or claude-3-5-sonnet, gemini-2.0-flash-exp
messages=[
{"role": "user", "content": "Hello!"}
]
)