Market Watch
| Symbol | Last | Change | Change % | Volume | Open | High | Low |
|---|
Open Positions
| Symbol | Qty | Avg Entry | Market Value | P&L | P&L % |
|---|
Place Order
Quick Quote
Estimated Cost
Enter symbol and quantity above to see estimated cost
Order History
| Time | Symbol | Side | Type | Qty | Filled | Avg Price | Commission | Status |
|---|
Open Positions
| Symbol | Qty | Avg Entry | Market Value | Unrealized P&L | P&L % |
|---|
Billing & Fees
| Time | Type | Amount | Description |
|---|
Admin Panel
| Name | API Key | Balance | Fee Rate | Status | Actions |
|---|
EVE FINANCE API Documentation
Base URL: /v1 | Auth: X-API-Key header
Registration
/v1/registerRegister a new account. Returns API key + secret.
{"name": "My App", "email": "me@example.com"}
Market Data
/v1/market/quotes?symbols=AAPL,MSFTGet latest bid/ask quotes.
/v1/market/snapshots?symbols=AAPLGet OHLC + volume snapshot.
/v1/market/bars?symbol=AAPL&timeframe=1Day&limit=30Historical bars. Timeframes: 1Min, 5Min, 15Min, 1Hour, 1Day.
/v1/assets?search=appleSearch available assets.
/v1/clockMarket open/close status.
Trading
/v1/ordersPlace an order.
{"symbol":"AAPL","side":"buy","order_type":"market","qty":10,"time_in_force":"day"}
Order types: market, limit, stop, stop_limit
/v1/orders?status=open&limit=50List orders. Filter by status.
/v1/orders/{id}Get order details. Syncs with upstream if still open.
/v1/orders/{id}Cancel an open order.
/v1/ordersCancel all open orders.
Account
/v1/accountAccount summary: cash, equity, buying power, positions.
/v1/positionsList all open positions with live P&L.
/v1/positions/{symbol}Get specific position.
/v1/positions/{symbol}Close (liquidate) a position.
/v1/positionsClose all positions.
Billing
/v1/fees?limit=50List all fee records.
Error Codes
401 — Missing or invalid API key
403 — Account suspended or admin required
404 — Resource not found
400 — Bad request / order rejected
Rate Limits
100 requests/minute per API key. Excess requests return 429.