> ## Documentation Index
> Fetch the complete documentation index at: https://docs.soo.network/llms.txt
> Use this file to discover all available pages before exploring further.

# GetSlot

## getSlot RPC Method

Returns the slot that has reached the given or default commitment level.

<div className="grid grid-cols-2 gap-1 mt-2">
  <div className="col-span-1">
    #### Parameters

    `object` **optional**\
    Configuration object containing the following fields:

    **commitment** `string` **optional**\
    The level of commitment desired when querying state

    **minContextSlot** `number` **optional**\
    The minimum slot that the request can be evaluated at
  </div>

  <div className="col-span-1">
    #### Code Sample

    ```bash theme={"system"}
    curl https://rpc.testnet.soo.network/rpc \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
      "jsonrpc": "2.0",
      "id": 1,
      "method": "getSlot",
      "params": [{
        "commitment": "finalized",
        "minContextSlot": 0
      }]
    }'
    ```

    #### Response

    ```json theme={"system"}
    {
      "jsonrpc": "2.0",
      "result": 369624,
      "id": 1
    }
    ```
  </div>
</div>

#### Result Details

* `<u64>` - Current slot
  * Represents the current blockchain slot at the specified commitment level
  * A slot is a unit of time in the Solana blockchain where blocks are produced
