Skip to main content
Build trading experiences that rival centralized exchanges. Execute swaps across any chain, implement advanced order types, and route through deep liquidity—all without writing smart contracts.

Smart Order Routing

Automatically find the best prices across 200+ DEXs and aggregators

Cross-Chain Execution

Swap tokens across any supported chain with a single signature

Advanced Order Types

Enable limit orders, TWAPs, and conditional triggers

Start Building

What You Can Build

Cross-Chain Swap Interface

Let users swap any token to any token across chains. Biconomy handles routing, bridging, and execution.
// Swap USDC on Base → ETH on Arbitrum
const quote = await fetch('https://api.biconomy.io/v1/quote', {
  method: 'POST',
  body: JSON.stringify({
    mode: 'eoa',
    ownerAddress: userAddress,
    composeFlows: [{
      type: '/instructions/intent-simple',
      data: {
        srcChainId: 8453,        // Base
        dstChainId: 42161,       // Arbitrum
        srcToken: USDC_BASE,
        dstToken: ETH_ARBITRUM,
        amount: '100000000',     // 100 USDC
        slippage: 0.01
      }
    }]
  })
});

Limit Order System

Implement conditional execution that triggers when price targets are met.

Price-Based Triggers

Execute swaps only when tokens reach target prices

Time-Weighted Orders

Split large orders across time to minimize slippage

Trading Bot Infrastructure

Power high-frequency trading strategies with MEE’s low-latency execution.
  • Batch multiple swaps into single transactions
  • Arbitrage across chains with single-signature execution
  • React to on-chain events with conditional triggers

Key Features

Biconomy aggregates liquidity from major DEXs and finds optimal routes:
  • Uniswap, SushiSwap, Curve, Balancer
  • 1inch, Paraswap, 0x aggregators
  • Cross-chain bridges (LiFi, Across, Relay)
Routes are optimized for best price, lowest gas, and fastest execution.

Integration Options

Most trading applications start with the Supertransaction API for rapid development, then add AbstractJS for advanced features like custom routing logic.