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

> Dapatkan nomor slot saat ini dari blockchain Solana menggunakan API LaserStream gRPC.

<hide>
  ## Endpoint

  Layanan gRPC tersedia di mainnet dan devnet dengan URL berikut:

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

## Otorisasi

<ParamField query="x-token" type="string" required>
  Kunci API Helius Anda. Anda bisa mendapatkannya secara gratis di
  [dasbor](https://dashboard.helius.dev/api-keys).
</ParamField>

## Pesan

Metode ini menerima permintaan kosong dan mengembalikan nomor slot saat ini.

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

## Respons

<ResponseField name="slot" type="integer">
  Nomor slot saat ini di blockchain Solana.
</ResponseField>

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