> 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/getblockheadersbyheight.md).

# getBlockHeadersByHeight

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

```
type GetBlockHeadersByHeightArgs struct {
    Height uint64 `json:"height"`
    End    int64  `json:"end"`
}


Response: BlockHeadersResponse 
```
