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

# getBlockTransactions

Retrieves the block for the ID given in Args and all the transactions for this block.

<br>

```
type GetBlockTransactionsArgs struct {
    ID string `json:"block_id"`
}

Response: type TransactionResponse struct {
    Txs     []*chain.Transaction `json:"txs"`
    BlockId string               `json:"id"`
}
```
