# getBlockHeadersByStart

Retrieves blocks from SEQ starting at the Start timestamp given in Args and ending when the timestamp is greater than End given in Args.&#x20;

```
type GetBlockHeadersByStartArgs struct {
    Start int64 `json:"start"`
    End   int64 `json:"end"`
}
Response: BlockHeadersResponse 
```
