| Status Code | Description | Response Headers |
| 200 | Latest block height for the specified chain. | - |
| 401 | Unauthorized. The request is missing or contains an invalid API key. | - |
| 403 | Forbidden. The API key does not have permission to access this endpoint. | - |
| 404 | Not Found. The requested resource or endpoint does not exist. | - |
Return the latest block height that the Binance Web3 node has synced to for the specified
+ * chain. Callers can use this to monitor node sync progress for risk control and detect when
+ * the node lags behind the canonical chain head.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ public void getLatestBlockHeightExample() throws ApiException {
+ String binanceChainId = "1";
+ Long recvWindow = 5000L;
+ String nonce = "unique-nonce-string";
+ TransactionApi.GetLatestBlockHeightRequest request =
+ new TransactionApi.GetLatestBlockHeightRequest(binanceChainId);
+ ApiResponse