> For the complete documentation index, see [llms.txt](https://docs.cryptum.io/english/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cryptum.io/english/community-edition/sdk-guides/queries/get-block-information.md).

# Get block information

#### `sdk.transaction.getBlock(opts)`

* `opts.block` (string)(**required**) - block number.
* `opts.protocol` (string)(**required**) - blockchain protocol.

```javascript
const tx = await sdk.transaction.getBlock({ block: '111111', protocol: 'STELLAR' })
// Raw block information returned from the Blockchain
```
