See exactly what each agent costs to run, so you can price correctly and scale profitably.
Drop in our lightweight SDK wrappers for OpenAI, Anthropic, Cohere, and more. Every API call is automatically captured with cost, latency, and token usage — zero manual instrumentation required.
See revenue, costs, and margins broken down by product, agent, and model — updated in real time. Know exactly where your money goes the moment it's spent.
Total revenue
$26.2k
Total cost
$7.9k
Blended margin
69.8%
See what each account actually costs you to serve — by agent, by model, by action. No more spreadsheets, no more guessing whether you're making money.
Revenue
$26.2k
+12%
Costs
$7.9k
-3%
Margin
69.8%
+4%
SIMPLE INTEGRATION
Kickstart your integration with simple SDKs for Node.js, Python, Go and Java. Get started today with simple, self-serve onboarding.
Documentation1import { PaidClient, PaidOpenAI } from '@paid-ai/paid-node'2import OpenAI from 'openai'34const client = new PaidClient({ token: '<your_paid_api_key>' })56// Initialize cost tracking7await client.initializeTracing()89// Wrap OpenAI in Paid.ai wrapper10const openaiClient = new OpenAI({ apiKey: '<your_openai_api_key>' })11const paidOpenAiWrapper = new PaidOpenAI(openaiClient)1213// Trace the call14await client.trace('<your_external_customer_id>', async () =>15paidOpenAiWrapper.images.generate({16// ...17}))