> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# GetBlockHeight

> Dapatkan tinggi blok Solana saat ini menggunakan API LaserStream gRPC.

<hide>
  ## Titik Akhir

  Layanan gRPC tersedia di mainnet dan devnet dengan URL berikut:

  * **Mainnet** `https://laserstream-mainnet.helius-rpc.com:443`
  * **Devnet** `https://laserstream-devnet.helius-rpc.com:443`
</hide>

## Otorisasi

<ParamField query="x-token" type="string" required>
  Kunci API Helius Anda. Anda bisa mendapatkannya secara gratis di
  [dasbor](https://dashboard.helius.dev/api-keys).
</ParamField>

## Pesan

Metode ini menerima permintaan kosong dan mengembalikan tinggi blok saat ini.

<RequestExample>
  ```json Empty Request theme={"system"}
  {}
  ```
</RequestExample>

## Respons

<ResponseField name="blockHeight" type="integer">
  Tinggi blok saat ini dari blockchain Solana.
</ResponseField>

<ResponseExample>
  ```json Block Height Response theme={"system"}
  {
    "blockHeight": 189554321
  }
  ```
</ResponseExample>
