Resources
API docs
The TicksMill API gives programmatic access to quotes, orders, portfolio state, and copy-trading actions. Public API access is currently in limited preview.
GET/v1/quotes/{symbol}
Real-time price and 24h change for a single asset.
{
"symbol": "AAPL",
"price": 192.41,
"changePct": 0.84
}POST/v1/orders
Submit a market order to buy or sell an asset.
{
"symbol": "AAPL",
"side": "buy",
"qty": 5
}GET/v1/portfolio
Current cash balance, positions, and total portfolio value.
{
"cashBalance": 8213.40,
"positions": [
{ "symbol": "NVDA", "qty": 2, "avgCost": 128.6 }
]
}POST/v1/copy-trading/follow
Start copying a trader with a specified allocation.
{
"traderId": "t1",
"allocatedAmount": 500
}