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

# GetBlockTime

## getBlockTime RPC Method

Returns the estimated production time of a block.

#### Method Information

Provides the estimated production time for a specific block in the blockchain.

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

    `u64` **required**\
    Block number, identified by Slot
  </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": "getBlockTime",
      "params": [369624]
    }'
    ```

    #### Response

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

#### Result Details

The result will be:

* `<i64>` - Estimated production time
  * Represented as a Unix timestamp (seconds since the Unix epoch)
  * Provides an approximate time when the block was produced
