aster-api-spot-market-data-v1
Aster Spot API Market Data (v1)
Base: https://sapi.asterdex.com. All GET; query string params; no signature except historicalTrades (API key).
Endpoints
| Endpoint | Weight | Key parameters |
|---|---|---|
GET /api/v1/ping |
1 | None |
GET /api/v1/time |
1 | None → { "serverTime": ms } |
GET /api/v1/exchangeInfo |
1 | None → symbols, filters, rateLimits, assets |
GET /api/v1/depth |
2–20 | symbol (required), limit (5,10,20,50,100,500,1000; default 100) |
GET /api/v1/trades |
1 | symbol, limit (default 500, max 1000) |
GET /api/v1/historicalTrades |
20 | symbol, limit, fromId. MARKET_DATA: requires API key |
GET /api/v1/aggTrades |
20 | symbol, fromId, startTime, endTime, limit (max 1000); startTime–endTime < 1h if both |
GET /api/v1/klines |
1–10 | symbol, interval, startTime, endTime, limit (default 500, max 1500) |
GET /api/v1/ticker/24hr |
1 or 40 | symbol (optional; no symbol = 40 weight) |
GET /api/v1/ticker/price |
1 or 2 | symbol (optional) |
GET /api/v1/ticker/bookTicker |
1 or 2 | symbol (optional) |
GET /api/v1/commissionRate |
20 | symbol (required). Signed. |
Depth weight by limit: 5, 10, 20, 50 → 2; 100 → 5; 500 → 10; 1000 → 20.
Intervals (klines): 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, 1M.
Conventions: REST symbols uppercase; WS lowercase; timestamps ms.
Payload shapes: reference.md.
More from asterdex/aster-skills-hub
aster-api-websocket-v3
WebSocket market + user data streams for Aster Futures API v3. Subscription model, stream names, listenKey. Use when implementing real-time market or user events (orders, balance, positions). listenKey = signed; see aster-api-auth-v3.
24aster-api-websocket-v1
WebSocket market + user data streams for Aster Futures API v1. Subscription model, stream names, listenKey (/fapi/v1/listenKey). Use when implementing real-time market or user events (orders, balance, positions). listenKey = signed; see aster-api-auth-v1.
23aster-api-trading-v3
Place, cancel, batch, and query orders for Aster Futures API v3 (/fapi/v3/). Use when placing/canceling orders or querying open/historical. Signed; see aster-api-auth-v3.
23aster-deposit-fund
Deposit funds to Aster from a wallet; private key from env. Use when the user wants to deposit to Aster or fund an Aster account.
23aster-api-auth-v3
EIP-712 signed requests for Aster Futures API v3. Nonce, signature payload, request format. Use when calling TRADE, USER_DATA, USER_STREAM, or MARKET_DATA.
23aster-api-market-data-v3
Public REST market data for Aster Futures API v3. Ping, time, exchangeInfo, depth, trades, klines, tickers, funding. Use when fetching market data. No auth.
22