Enter your pricing page URL and we'll give you a redesigned pricing model

WHY PAID.AI
Billing is table stakes. Monetisation is far more; picking the right pricing model, tracking
your costs, communicating value to customers, and iterating as you learn.

See your margin by product, customer, or feature
Track how your agent is being used in real-time

Show customers the ROI your agent delivers

Pricing consulting & billing in one place
We're not here to charge you for invoices. We're here to help you capture more value.

SIMPLE INTEGRATION
Kickstart your integration with simple SDKs for Node.js, Python, Go and Ruby. Get started today with simple, self-serve onboarding.
1import { PaidClient } from '@paid-ai/paid-node'23const client = new PaidClient({ token: '<your_paid_api_key>' })45const additionalData = {6costData: {7vendor: "<vendor_name>",8cost : {9amount: 0.0001,10currency: "USD"11}12}13};14await client.usage.recordUsage({15agent_id: "<your_agent_id>",16event_name: "<your_signal_name>",17customer_id: "<your_customer_id>",18data: additionalData,19})2021// Use `.flush()` to send usage immediately22await client.usage.flush();