Fintechs

P2P payments, DeFi & multi-chain assets for your app.

Fintech Capabilities

Payment Infrastructure
Payment Infrastructure

Integrate payments & cross-border transfers into your fintech app.

DeFi Integration
DeFi Integration

Offer lending, borrowing, & staking services through our DeFi protocols.

Portfolio Management
Portfolio Management

Provide users with unified portfolio tracking across all chains & assets.

White-label Options
White-label Options

Customizable UI components & 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?