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

> LaserStream gRPC APIを使用して、Solanaブロックチェーン上でブロックハッシュが有効かどうかを確認します。

<hide>
  ## エンドポイント

  gRPCサービスは、以下のURLでメインネットとデブネットで利用可能です:

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

## 認証

<ParamField query="x-token" type="string" required>
  あなたのHelius APIキー。無料で
  [ダッシュボード](https://dashboard.helius.dev/api-keys)から取得できます。
</ParamField>

## メッセージ

<ParamField body="blockhash" type="string" required>
  base-58エンコードされた文字列としてチェックするブロックハッシュ。
</ParamField>

## 応答

<ResponseField name="valid" type="boolean">
  ブロックハッシュがまだ有効（true）か、期限切れか（false）。
</ResponseField>

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

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