Planned guides and API reference
Comprehensive API documentation and developer guides coming with mainnet launch (Q2 2025)
Olympus Trader provides a complete DeFi trading platform built on Compound V2 and Uniswap V3. This guide will help you get started.
Click "Connect Wallet" and select your preferred wallet (MetaMask, Coinbase Wallet, WalletConnect, Ledger, or Tally).
Transfer ETH or supported tokens to your connected wallet address.
Navigate to the trading dashboard to start lending, borrowing, or swapping tokens.
Use our REST API to integrate Olympus Trader into your applications.
POST /api/v1/auth/login
Content-Type: application/json
{
"email": "user@example.com",
"password": "your_password"
}
GET /api/v1/portfolio
Authorization: Bearer {your_token}
POST /api/v1/trades
Authorization: Bearer {your_token}
Content-Type: application/json
{
"type": "swap",
"tokenIn": "0x...",
"tokenOut": "0x...",
"amount": "1000000000000000000"
}