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

# GetLatestBlockhash

> LaserStream gRPC API를 사용하여 Solana 블록체인에서 최신 blockhash를 가져옵니다.

<hide>
  ## Endpoints

  gRPC 서비스는 다음 URL을 통해 mainnet과 devnet에서 사용할 수 있습니다:

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

## Authorizations

<ParamField query="x-token" type="string" required>
  귀하의 Helius API 키입니다. [dashboard](https://dashboard.helius.dev/api-keys)에서 무료로 받을 수 있습니다.
</ParamField>

## Message

이 메서드는 빈 요청을 받아 최신 blockhash와 해당하는 마지막 유효 블록 높이를 반환합니다.

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

## Response

<ResponseField name="slot" type="string">
  현재 슬롯 번호입니다.
</ResponseField>

<ResponseField name="blockhash" type="string">
  최신 blockhash를 base-58로 인코딩한 문자열입니다.
</ResponseField>

<ResponseField name="last_valid_block_height" type="string">
  반환된 blockhash가 유효할 마지막 블록 높이입니다.
</ResponseField>

<ResponseExample>
  ```json Latest Blockhash Response theme={"system"}
  {
    "slot": "333390974",
    "blockhash": "CiqX6nU67eVCFqxh6TJ3LF8bDqjtnD2wULRMME917QSY",
    "last_valid_block_height": "311630163"
  }
  ```
</ResponseExample>
