API Reference · v1
REST & WebSocket API
Authenticated endpoints to quote, route, and execute perpetuals orders across Drift, Zeta and Jupiter. Base URL: https://api.archerus.io/v1
Authentication
All requests require a bearer token in the Authorization header.
Authorization: Bearer ak_live_xxxEndpoints
GET
/marketsList all supported perpetual markets across aggregated venues.
curl https://api.archerus.io/v1/markets \
-H "Authorization: Bearer $ARCHERUS_KEY"POST
/quoteSmart-route a size and return best execution path with expected slippage.
POST /v1/quote
{
"market": "SOL-PERP",
"side": "buy",
"size": 25000
}POST
/ordersSubmit an order. Returns a signed transaction bundle for the wallet to broadcast.
POST /v1/orders
{
"market": "SOL-PERP",
"side": "buy",
"size": 25000,
"type": "market",
"mev_protection": true
}GET
/orders/:idFetch execution receipt: fills per venue, average price, fees, slippage saved.
GET /v1/orders/ord_8f3a…Need integration help?
Read the full developer guides or talk to our team.