Solutions
Fintechs
Power your application with Torque's programmable financial infrastructure. Enable P2P payments, DeFi integrations, and multi-chain asset management for your users.
Fintech Capabilities
Payment Infrastructure
Integrate crypto payments and cross-border transfers into your fintech app.
DeFi Integration
Offer lending, borrowing, and staking services through our DeFi protocols.
Portfolio Management
Provide users with unified portfolio tracking across all chains and assets.
White-label Options
Customizable UI components and branding to match your fintech platform.
Integration Example
fintech-integration.ts
import { TorqueSDK } from '@torque/sdk'
// Initialize SDK for your fintech app
const torque = new TorqueSDK({
appId: 'your-fintech-app-id',
apiKey: process.env.TORQUE_API_KEY,
})
// Enable DeFi features for users
const lending = await torque.defi.supply({
token: 'USDC',
amount: '1000',
chainId: 1,
userAddress: userWallet,
})
// Track user portfolio
const portfolio = await torque.portfolio.get({
userAddress: userWallet,
includeDeFi: true,
chains: ['ethereum', 'base', 'arbitrum'],
})Was this helpful?