API Reference
Build powerful trading automations with Hyper Trading's comprehensive REST API. Full documentation for programmatic access to strategies, bots, and analytics.
API Key Authentication
Secure API keys with customizable permissions and IP whitelisting.
Low Latency
Average response time under 50ms for real-time trading operations.
Rate Limiting
Generous rate limits with 1000 requests/minute for Pro users.
Webhooks
Real-time notifications for trades, signals, and system events.
Quick Start
Check API Status
curl -X GET https://api.hyper-quant.tech/v1/statusAuthenticate with API Key
curl -X GET https://api.hyper-quant.tech/v1/strategies \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Deploy a Strategy
curl -X POST https://api.hyper-quant.tech/v1/strategies/momentum-alpha/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"pair": "BTC/USDT",
"exchange": "binance",
"risk_level": "medium",
"position_size": 0.1
}'Authentication
API Key Security
All authenticated requests require a valid API key in the Authorization header. API keys can be created in your dashboard with granular permissions:
- Read-only: View strategies, bots, and performance data
- Trade: Start/stop bots and deploy strategies
- Admin: Full API access including webhooks and settings
API Endpoints
| Method | Endpoint | Description | Auth |
|---|---|---|---|
| GET | /v1/status | Check API status and get server time | — |
| GET | /v1/strategies | List all available trading strategies | |
| POST | /v1/strategies/{id}/deploy | Deploy a strategy with custom parameters | |
| GET | /v1/bots | List all active trading bots | |
| POST | /v1/bots/{id}/start | Start a trading bot | |
| POST | /v1/bots/{id}/stop | Stop a trading bot | |
| GET | /v1/performance | Get performance metrics and statistics | |
| GET | /v1/trades | List trade history with filtering |
Rate Limits
Free
100 requests/min
Burst: 10/sec
Pro
1,000 requests/min
Burst: 50/sec
Enterprise
10,000 requests/min
Burst: 500/sec
Official SDKs
Use our official SDKs for faster integration. Available for Python, JavaScript/TypeScript, and Go.
📝 Full API Documentation Coming Soon: Complete endpoint documentation with request/response schemas, error codes, and interactive API explorer.Contact us to request early API access.