NovaEx API v1

Welcome to the NovaEx API. Our RESTful API allows you to access market data, manage your account, and execute trades programmatically. All responses are returned in JSON format.

Authentication

To access private endpoints, you must use your API Key and Secret. These are passed in the request headers:

X-NOVA-APIKEY: <your_api_key>
X-NOVA-SIGNATURE: <hmac_sha256_signature>

Get Ticker

Returns 24h ticker price change statistics.

GET /api/v1/ticker/24hr?symbol=BTCUSDT

Response Example

{
  "symbol": "BTCUSDT",
  "priceChange": "105.15",
  "priceChangePercent": "0.162",
  "lastPrice": "65120.50",
  "volume": "12540.25"
}

New Order

Executes a new limit or market order.

POST /api/v1/order