Everything you need to offer advanced trading capabilities to your users
From traditional finance to unique alternative investments. Most markets support shorting and leverage.
Invest in about 10x the amount of markets leading brokers offer on the blockchain.
Go long or short on hundreds of crypto assets, from majors to altcoins.
Trade major commodities such as Gold, Silver, Oil and Wheat.
Covers the most important and liquid trading pairs worldwide.
Appeal to a broader user base with fractional ownership of unique assets, like a rare Yeezy.
Own a screw of a Nautilus. Sometimes that's all it takes to appeal to a broader user base.
Enable in-wallet trading for your users in minutes with our developer-friendly SDK.
import { MorpherTradeSDK } from 'morpher-trading-sdk';
const morpherTradeSDK = new MorpherTradeSDK('https://api.morpher.com/v2');
// 1. Fetch available markets
const { markets } = await morpherTradeSDK.getMarketList({
type: 'stock'
});
console.log(Object.keys(markets).length, 'stock markets available.');
// 2. Open a position on Apple stock
// Assumes 'account', 'walletClient', 'publicClient' from Viem/Wagmi
morpherTradeSDK.openPosition({
account,
walletClient,
publicClient,
market_id: 'STOCK_AAPL',
currency: 'USDC',
direction: 'long',
tradeAmount: 100_000000n, // 100 USDC (6 decimals)
leverage: 10,
callback: (result) => console.log('Trade result:', result)
});
// 3. Subscribe to real-time price updates
morpherTradeSDK.subscribeToMarket('STOCK_AAPL', (update) => {
console.log('AAPL price update:', update.close);
});
Everything your team needs to integrate the Morpher SDK and unlock new trading capabilities.