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

> Periksa apakah blockhash masih valid di blockchain Solana 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

<ParamField body="blockhash" type="string" required>
  Blockhash yang akan diperiksa sebagai string berkode base-58.
</ParamField>

## Respons

<ResponseField name="valid" type="boolean">
  Apakah blockhash masih valid (true) atau sudah kedaluwarsa (false).
</ResponseField>

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

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