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

> LaserStream gRPC API를 사용하여 Solana의 현재 블록 높이를 가져옵니다.

<hide>
  ## 엔드포인트

  gRPC 서비스는 메인넷과 데브넷에서 다음 URL로 사용할 수 있습니다:

  * **메인넷** `https://laserstream-mainnet.helius-rpc.com:443`
  * **데브넷** `https://laserstream-devnet.helius-rpc.com:443`
</hide>

## 인증

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

## 메시지

이 메서드는 빈 요청을 받아 현재 블록 높이를 반환합니다.

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

## 응답

<ResponseField name="blockHeight" type="integer">
  Solana 블록체인의 현재 블록 높이입니다.
</ResponseField>

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