Official TypeScript/JavaScript SDK for the NYXANCE Exchange API.
Alpha — This SDK is under active development. API may change.
npm install @nyxance/sdkimport { NyxanceClient } from '@nyxance/sdk';
const client = new NyxanceClient({
apiKey: 'your-api-key',
apiSecret: 'your-api-secret',
});
// Get ticker
const ticker = await client.getTicker('BTC-USDT');
console.log(ticker);
// Place order
const order = await client.createOrder({
symbol: 'BTC-USDT',
side: 'buy',
type: 'limit',
quantity: 0.01,
price: 70000,
leverage: 10,
});- REST API client with full type safety
- WebSocket real-time market data
- Order management (limit, market, stop)
- Position tracking and PnL
- AI-powered risk scoring integration
- Copy-trading API
- NYXANCE Exchange
- API Documentation (coming soon)
- Discord
- Telegram