# timeboost\_getRoundSequence

This endpoint returns the hashes of all transactions that were submitted to the express lane for a specific round, along with their sequence numbers.

### Request Body

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "timeboost_getRoundSequence",
  "params": [
    // [Integer] The starting round number (must be a Kairos-controlled round).
    1234,           
  ]
}
```

### CURL Example

```bash
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "timeboost_getRoundSequence",
    "params": [1234],
    "id": 1
  }' \
  https://rpc.kairos-timeboost.xyz
```

### ‍**Response Example** <a href="#response-example" id="response-example"></a>

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": [
    "0x..1",
    "0x..2",
    "0x..3",
    "0x..4",
    "0x..5",
    "0x..6"
  ]
}
```
