Merchants
Accept payments globally. Multiple assets, chains & payment methods, one integration.
Merchant Benefits
Easy Integration
Add payments to your store in minutes with our simple Checkout SDK.
Multi-token Support
Accept payments in USDC, USDT, ETH, & 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 & 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?