Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Tavio offers official SDKs in JavaScript/TypeScript, Python, and Go.
npm install @tavio/sdk
import Tavio from "@tavio/sdk"; const tavio = new Tavio({ apiKey: "tv_live_xxxxxxxxxxxx" }); const payment = await tavio.payments.create({ amount: 5000, currency: "USD", settlementAsset: "USDC", paymentMethods: ['card', 'crypto'], customer: { email: 'user@example.com' } }); console.log(payment.checkoutUrl);
const payout = await tavio.payouts.create({ amount: 200, currency: "USD", recipient: { name: "John Doe", destination: { type: "bank_account", routing: "021000021", account: "9876543210" } } });