For AI developers
Register your app, let users connect their Conduit wallet, and charge per token. We handle funds, allowances, refunds, and payouts.
Send users to the Conduit OAuth consent screen. They approve a spend cap, you receive a code, exchange it for tokens, and start charging.
<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>
Use the Conduit gateway as a drop-in OpenAI-compatible endpoint. We meter tokens and debit the user's wallet.
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"}]
}'