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

# SubscribeReplayInfo

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

## 消息

此方法接收一个空请求，并在不打开订阅的情况下返回最早可用的重放槽位。它没有 commitment 参数。

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

## 响应

<ResponseField name="first_available" type="integer">
  可选。最早可用的重放槽位。字段不存在表示没有可用的重放数据。值为 `0` 表示槽位零，而不是值不存在。
</ResponseField>

<ResponseExample>
  ```json theme={"system"}
  {
    "firstAvailable": "448724150"
  }
  ```
</ResponseExample>

如果没有可用的重放数据，JSON 响应为 `{}`。

<Note>
  返回的槽位反映当前可用性，并且可能会在你订阅前发生变化。此方法不会更改订阅的起始槽位。
</Note>

有关重放配置和恢复指南，请参阅[历史重放](/docs/zh/laserstream/historical-replay)。
