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

# GetSlot

> 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="slot" type="integer">
  Solanaブロックチェーン上の現在のスロット番号。
</ResponseField>

<ResponseExample>
  ```json theme={"system"}
  {
    "slot": "333391830"
  }
  ```
</ResponseExample>
