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

# IsBlockhashValid

> Überprüfen Sie, ob ein Blockhash auf der Solana-Blockchain noch gültig ist, indem Sie die LaserStream gRPC API verwenden.

<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

<ParamField body="blockhash" type="string" required>
  Der Blockhash, der als base-58 kodierter String überprüft werden soll.
</ParamField>

## Antwort

<ResponseField name="valid" type="boolean">
  Ob der Blockhash noch gültig ist (true) oder abgelaufen (false).
</ResponseField>

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

<ResponseExample>
  ```json theme={"system"}
  {
      "slot": "333440972",
      "valid": false
  }
  ```
</ResponseExample>
