> ## 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

> Erhalten Sie die aktuelle Blockhöhe von Solana mit der LaserStream gRPC API.

<hide>
  ## Endpunkte

  gRPC-Dienste sind auf Mainnet und Devnet mit den folgenden URLs verfügbar:

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

## Berechtigungen

<ParamField query="x-token" type="string" required>
  Ihr Helius API-Schlüssel. Sie können einen kostenlos im
  [Dashboard](https://dashboard.helius.dev/api-keys) erhalten.
</ParamField>

## Nachricht

Diese Methode nimmt eine leere Anfrage und gibt die aktuelle Blockhöhe zurück.

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

## Antwort

<ResponseField name="blockHeight" type="integer">
  Die aktuelle Blockhöhe der Solana-Blockchain.
</ResponseField>

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