Coming Soon

Tucci Cash API

Powerful APIs for payment gateway integration, fintech applications, and crypto-to-fiat services. Currently in private beta.

API Access Currently Private

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

Planned API Capabilities

Payment Gateway

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/refund

Card Issuance

Programmatically 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}/transactions

Swap API

Execute token swaps with best-price routing. Real-time quotes and instant settlement on Solana.

GET /v1/swap/quotePOST /v1/swap/executeGET /v1/swap/token-info

Webhooks

Real-time notifications for all account events. Payment confirmations, card transactions, and more.

POST /v1/webhooks/createGET /v1/webhooksDELETE /v1/webhooks/{id}

Example Integration

payment-example.ts
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_abc123xyz

Get Notified on Launch

Be the first to know when the Tucci Cash API becomes publicly available. Join our developer waitlist for early access and documentation previews.