Documentation In Progress

Documentation

Planned guides and API reference

Comprehensive API documentation and developer guides coming with mainnet launch (Q2 2025)

Getting Started

Olympus Trader provides a complete DeFi trading platform built on Compound V2 and Uniswap V3. This guide will help you get started.

1. Connect Your Wallet

Click "Connect Wallet" and select your preferred wallet (MetaMask, Coinbase Wallet, WalletConnect, Ledger, or Tally).

2. Fund Your Account

Transfer ETH or supported tokens to your connected wallet address.

3. Start Trading

Navigate to the trading dashboard to start lending, borrowing, or swapping tokens.

API Reference

Use our REST API to integrate Olympus Trader into your applications.

Authentication

POST /api/v1/auth/login
Content-Type: application/json

{
  "email": "user@example.com",
  "password": "your_password"
}

Get Portfolio

GET /api/v1/portfolio
Authorization: Bearer {your_token}

Execute Trade

POST /api/v1/trades
Authorization: Bearer {your_token}
Content-Type: application/json

{
  "type": "swap",
  "tokenIn": "0x...",
  "tokenOut": "0x...",
  "amount": "1000000000000000000"
}