Cash Balance
$0.00
Portfolio Value
$0.00
Buying Power
$0.00

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

Fee Rate
0.20%
Total Fees Paid
$0.00
Trade Count
0
Time Type Amount Description

Admin Panel

Total Clients
0
Total Trades
0
Platform Revenue
$0.00
Name Email API Key Balance Fee Rate Status Actions

EVE FINANCE API Documentation

Base URL: /v1  |  Auth: X-API-Key header

Registration

POST /v1/register

Register a new account. Returns API key + secret.

{"name": "My App", "email": "me@example.com"}

Market Data

GET /v1/market/quotes?symbols=AAPL,MSFT

Get latest bid/ask quotes.

GET /v1/market/snapshots?symbols=AAPL

Get OHLC + volume snapshot.

GET /v1/market/bars?symbol=AAPL&timeframe=1Day&limit=30

Historical bars. Timeframes: 1Min, 5Min, 15Min, 1Hour, 1Day.

GET /v1/assets?search=apple

Search available assets.

GET /v1/clock

Market open/close status.

Trading

POST /v1/orders

Place an order.

{"symbol":"AAPL","side":"buy","order_type":"market","qty":10,"time_in_force":"day"}

Order types: market, limit, stop, stop_limit

GET /v1/orders?status=open&limit=50

List orders. Filter by status.

GET /v1/orders/{id}

Get order details. Syncs with upstream if still open.

DEL /v1/orders/{id}

Cancel an open order.

DEL /v1/orders

Cancel all open orders.

Account

GET /v1/account

Account summary: cash, equity, buying power, positions.

GET /v1/positions

List all open positions with live P&L.

GET /v1/positions/{symbol}

Get specific position.

DEL /v1/positions/{symbol}

Close (liquidate) a position.

DEL /v1/positions

Close all positions.

Billing

GET /v1/fees?limit=50

List 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.