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

# Ping

> シンプルなピンポンメカニズムでLaserStream gRPC APIへの接続性を確認します。

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

## メッセージ

このメソッドは空のリクエストを受け取り、接続性を確認するためにシンプルなポンのレスポンスを返します。

## レスポンス

<ResponseField name="pong" type="boolean">
  接続が成功すると常にtrueを返します。
</ResponseField>

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

<ResponseExample>
  ```json theme={"system"}
  {
      "count": 0
  }
  ```
</ResponseExample>
