Aleatoric now publishes both the US and JP production edges. JP access is available to eligible customers using the regional endpoints below.
Protocol Endpoint Port Transport JSON-RPC https://rpc.aleatoric.systems443 HTTPS gRPC hl.grpc.aleatoric.systems443 HTTP/2 + TLS Unified Stream https://unified.grpc.aleatoric.systems443 SSE over HTTPS Disk-Sync WebSocket wss://disk.grpc.aleatoric.systems443 WSS
Protocol Endpoint Port Transport JSON-RPC https://rpc-jp.aleatoric.systems443 HTTPS gRPC hl-jp.grpc.aleatoric.systems443 HTTP/2 + TLS Unified Stream https://unified-jp.grpc.aleatoric.systems443 SSE over HTTPS Disk-Sync WebSocket wss://disk-jp.grpc.aleatoric.systems443 WSS
JP edge status: JP regional endpoints are available for customer use when the account plan includes Japan East access.
Service Endpoint Description API Gateway https://mcp.aleatoric.systemsAuthentication, billing, dashboard proxy Alpha Dashboard Proxy https://mcp.aleatoric.systems/api/v1/unified/*Session-authenticated proxy to unified stream
Important: The Unified Stream endpoints listed above (unified.grpc.aleatoric.systems) are for direct SDK/bot access using API keys provisioned via the credential manager. Dashboard clients must connect through the engine proxy at mcp.aleatoric.systems/api/v1/unified/*, which validates session tokens and forwards requests to the hypernode with a service-level key. Connecting directly from the browser will result in a 401 auth error because the hypernode does not accept session tokens.
Health checks do not require authentication and return HTTP 200 when the service is operational.
Region URL Method US https://unified.grpc.aleatoric.systems/healthzGET JP https://unified-jp.grpc.aleatoric.systems/healthzGET
curl -s https://unified.grpc.aleatoric.systems/healthz
Protocol Auth Method Tier Latency Target JSON-RPC x-api-key headerAll tiers p50 < 50 ms gRPC x-api-key metadataPro+ p50 < 10 ms Unified Stream (SSE) x-api-key or Bearer headerPro+ p50 < 500 μ \mu μ s Disk-Sync WebSocket x-api-key header or ?api_key= queryQuant only Wire-speed
US and JP production endpoints are published as separate regional targets. Choose the endpoint that matches your entitled region and operating requirements.
Property Value Minimum version TLS 1.2 Cipher suites ECDHE+AESGCM, ECDHE+CHACHA20POLY1305 gRPC transport HTTP/2 with ALPN (h2) Certificate management Automated (platform-managed) Certificate management Managed by Aleatoric
curl -X POST https://rpc.aleatoric.systems \
-H " Content-Type: application/json " \
-H " x-api-key: YOUR_API_KEY " \
-d ' {"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1} '
grpcurl -d ' {"coin":"BTC"} ' \
-H " x-api-key: YOUR_API_KEY " \
hl.grpc.aleatoric.systems:443 \
price.PriceService/GetMidPrice
curl -N -H " x-api-key: YOUR_API_KEY " \
" https://unified.grpc.aleatoric.systems/api/v1/unified/stream "
const ws = new WebSocket ( ' wss://disk.grpc.aleatoric.systems ' , {
headers: { ' x-api-key ' : ' YOUR_API_KEY ' }