API access, webhooks, leaderboards, and support system
The ecosystem layer connects all platform tools with unified API access. Developers can build custom applications using our REST API, while traders can set up webhooks for real-time order notifications.
REST API
Access
Webhook
Configuration
Cross-Tool
Navigation
Every machine exposes ONLY REST APIs. No UI, no manual intervention โ pure machine-to-machine communication.
17 independent machines. One fails? Others keep running. No single point of failure.
Built for algorithms. Every action has an API endpoint โ perfect for automated trading systems.
Each machine is a dedicated service with specific API endpoints. No cross-machine calls โ pure isolation.
# Your bot connects to ANY machine via REST API import requests API_KEY = "your_api_key_here" # 1. Check balance from Wallet Machine balance = requests.get( "http://api.h13.io:3010/api/platform/balance", headers={"X-API-Key": API_KEY} ).json() print(f"Balance: ${balance['balance']}") # 2. Get BTC price from Market Data Machine price = requests.get( "http://api.h13.io:3005/api/ticker/BTCUSD" ).json() print(f"BTC Price: ${price['price']}") # 3. Execute trade via Trading Execution Machine order = requests.post( "http://api.h13.io:3001/api/order", headers={"X-API-Key": API_KEY}, json={ "symbol": "BTCUSD", "side": "buy", "quantity": 0.01, "type": "market" } ).json()
Get your API keys, configure webhooks, and start trading in minutes.