Integrate with Sikkaa Exchange using our comprehensive REST API and WebSocket feeds
The Sikkaa Exchange API provides programmatic access to trading, market data, account management, and wallet operations. Our API is designed for developers, trading bots, and institutional partners.
https://api.sikkaaexchange.com
v1
120 requests/minute
Generate API keys from your account dashboard with specific permissions (read, trade, withdraw).
X-API-Key: your_api_key
X-API-Secret: your_api_secret
X-Timestamp: 1640995200000
X-Signature: hmac_sha256_signature
All private endpoints require HMAC-SHA256 signature using your API secret.
signature = HMAC-SHA256(timestamp + method + path + body, api_secret)
Subscribe to live price feeds, order book updates, and trade streams.
wss://ws.sikkaaexchange.com/v1/stream
// Subscribe to ticker
{"method": "subscribe", "params": ["ticker.BTC/INR"]}
Get real-time updates for your orders, trades, and balance changes.
// Subscribe to user orders
{"method": "subscribe", "params": ["user.orders"], "auth": "api_key"}
{
"error": {
"code": 1001,
"message": "Invalid API key",
"details": "API key not found or expired"
}
}
Store API keys securely, never expose them in client-side code or public repositories.
Restrict API access to specific IP addresses for enhanced security.
Only grant necessary permissions (read, trade, withdraw) to API keys.
Use current timestamps and implement replay attack protection.
Sample implementations in Python, JavaScript, and other languages
Complete endpoint documentation with request/response examples
Get help from our technical team via dedicated developer channels