Powerful APIs for payment gateway integration, fintech applications, and crypto-to-fiat services. Currently in private beta.
The Tucci Cash API is currently in private beta and not publicly available. We are working closely with select partners to refine our API offerings before public release.
Interested in early access? Contact our partnerships team at api@tucci.cash
Accept crypto payments on your platform with automatic fiat conversion. Support for SOL, USDC, and major tokens.
POST /v1/payments/createGET /v1/payments/{id}POST /v1/payments/refundProgrammatically issue virtual cards for your users. Full control over spending limits and card lifecycle.
POST /v1/cards/createPATCH /v1/cards/{id}GET /v1/cards/{id}/transactionsExecute token swaps with best-price routing. Real-time quotes and instant settlement on Solana.
GET /v1/swap/quotePOST /v1/swap/executeGET /v1/swap/token-infoReal-time notifications for all account events. Payment confirmations, card transactions, and more.
POST /v1/webhooks/createGET /v1/webhooksDELETE /v1/webhooks/{id}import { TucciClient } from '@tucci/sdk';
const tucci = new TucciClient({
apiKey: process.env.TUCCI_API_KEY,
environment: 'production'
});
// Create a payment request
const payment = await tucci.payments.create({
amount: 100.00,
currency: 'USD',
acceptedTokens: ['SOL', 'USDC'],
metadata: {
orderId: 'ORD-12345',
customerEmail: 'customer@example.com'
},
redirectUrl: 'https://yoursite.com/payment/success',
webhookUrl: 'https://yoursite.com/api/webhooks/tucci'
});
console.log('Payment URL:', payment.checkoutUrl);
// => https://pay.tucci.cash/p/pay_abc123xyzBe the first to know when the Tucci Cash API becomes publicly available. Join our developer waitlist for early access and documentation previews.