Solutions
Merchants
Accept crypto payments from customers worldwide with zero friction. Support multiple tokens, chains, and payment methods through a single integration.
Merchant Benefits
Easy Integration
Add crypto payments to your store in minutes with our simple Checkout SDK.
Multi-token Support
Accept payments in USDC, USDT, ETH, and 100+ other tokens across all major chains.
Instant Settlement
Receive payments instantly with automatic conversion to your preferred stablecoin.
Low Fees
Competitive processing fees with transparent pricing and no hidden costs.
Quick Start
merchant-checkout.ts
import { TorqueCheckout } from '@torque/sdk'
// Initialize checkout for your store
const checkout = new TorqueCheckout({
businessId: 'your-store-id',
apiKey: process.env.TORQUE_API_KEY,
})
// Create payment session for a product
const session = await checkout.createSession({
amount: 49.99,
currency: 'USD',
productId: 'product-123',
successUrl: 'https://yourstore.com/success',
cancelUrl: 'https://yourstore.com/cancel',
})
// Redirect customer to payment
window.location.href = session.checkoutUrlWas this helpful?