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

# getBlockTransactionsByNamespace

Retrieves the block for the height given in args and all the transactions for this block that match the given namespace.

```
type GetBlockTransactionsByNamespaceArgs struct {
    Height    uint64 `json:"height"`
    Namespace string `json:"namespace"`
}


Response: type SEQTransactionResponse struct {
    Txs     []*types.SEQTransaction `json:"txs"`
    BlockId string                  `json:"id"`
}
```
