Introduction

Torque: Money OS

The intelligent programmable financial operating system for self-custody, unifying global liquidity & orchestrating seamless best-price execution across 10+ blockchains.

Quick Example

checkout.ts
import { TorqueCheckout } from '@torque/sdk'

const checkout = new TorqueCheckout({
  businessId: 'your-business-id',
  apiKey: process.env.TORQUE_API_KEY,
})

const session = await checkout.createSession({
  amount: 99.99,
  currency: 'USD',
})
Was this helpful?