For AI developers

A drop-in billing layer for AI.

Register your app, let users connect their Conduit wallet, and charge per token. We handle funds, allowances, refunds, and payouts.

1. Add the Connect button

Send users to the Conduit OAuth consent screen. They approve a spend cap, you receive a code, exchange it for tokens, and start charging.

html
<a href="https://conduit.app/oauth/consent
  ?client_id=app_live_..._abc
  &redirect_uri=https://yourapp.com/cb
  &response_type=code
  &scope=wallet:charge profile:read
  &state=xyz
  &code_challenge=...
  &code_challenge_method=S256">
  Connect AI Wallet
</a>

2. Charge per request

Use the Conduit gateway as a drop-in OpenAI-compatible endpoint. We meter tokens and debit the user's wallet.

bash
curl https://api.conduit.dev/v1/chat/completions \
  -H "Authorization: Bearer sk-conduit-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [{"role":"user","content":"hello"}]
  }'

Get paid via Stripe Connect.

Conduit handles aggregation and net-of-fees settlement to your Stripe Connect account on a rolling schedule.