{
				"service": "api-gateway",
				"version": "dev",
				"status": "running",
				"health": {
					"redis": "connected",
					"kafka": "connected"
				},
				"endpoints": [
					{
						"path": "/api/v5/openOrders",
						"method": "GET",
						"description": "Get open orders"
					},
					{
						"path": "/api/v5/orders",
						"method": "GET",
						"description": "Get all orders (open, pending, filled, canceled)"
					},
					{
						"path": "/api/v5/fills",
						"method": "GET",
						"description": "Get fills"
					},
					{
						"path": "/api/v5/positions",
						"method": "GET",
						"description": "Get positions for account"
					},
					{
						"path": "/api/v5/account",
						"method": "GET",
						"description": "Get account info (requires X-API-Key)"
					},
					{
						"path": "/api/v5/order/:order_id",
						"method": "GET",
						"description": "Get order status by order_id"
					},
					{
						"path": "/api/v5/placeOrder",
						"method": "POST",
						"description": "Place single order (Binance-compatible)"
					},
					{
						"path": "/api/v5/batchPlaceOrders",
						"method": "POST",
						"description": "Place batch orders (up to 100)"
					},
					{
						"path": "/api/v5/cancel",
						"method": "POST",
						"description": "Cancel order by ID or clientOrderId"
					},
					{
						"path": "/api/v5/modify",
						"method": "POST",
						"description": "Modify order quantity"
					},
					{
						"path": "/api/v5/apiKey",
						"method": "POST",
						"description": "Create API key for account (creates account if needed)"
					},
					{
						"path": "/api/v5/l2OrderBook/:market",
						"method": "GET",
						"description": "Get L2 orderbook snapshot for a market"
					},
					{
						"path": "/api/v5/bbo/:market",
						"method": "GET",
						"description": "Get best bid/offer for a market"
					},
					{
						"path": "/api/v5/markets",
						"method": "GET",
						"description": "Get all markets with details (optional: ?market=BTC-PERP)"
					},
					{
						"path": "/health",
						"method": "GET",
						"description": "Basic health check"
					}
				]
			}