> For the complete documentation index, see [llms.txt](https://nodekit.gitbook.io/nodekit-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nodekit.gitbook.io/nodekit-documentation/json-rpc-methods/getblockheadersbystart.md).

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