chain_getBlock - Kusama RPC Method
Retrieve block data by hash on Kusama. Essential for accessing block headers and extrinsics on Polkadot's canary network for real-world testing with live economic conditions.
Retrieves complete block information from Kusama, including the block header, extrinsics, and justifications.
Why Kusama? Build on Polkadot's canary network for real-world testing with live economic conditions with 7-day governance cycles (vs 1 month on Polkadot), lower bonding requirements, live KSM token economy, and first-to-market feature testing.
Use Cases
The chain_getBlock method is essential for:
- Block explorers - Display complete block information
- Chain analysis - Analyze block production patterns
- Transaction verification - Confirm extrinsic inclusion for parachain experimentation, early feature deployment, and production-grade testing with real value
- Data indexing - Build historical blockchain databases
Request Parameters
Hex-encoded block hash. If omitted, returns latest block
Response Body
Complete block data
Block header information
Hash of the parent block
Block number (hex-encoded)
Root of the state trie
Root of the extrinsics trie
Array of extrinsics in the block
Block justifications (if available)
Code Examples
# Get latest block
curl \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "chain_getBlock",
"params": [],
"id": 1
}'
# Get specific block
curl \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "chain_getBlock",
"params": ["0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3"],
"id": 1
}'import { ApiPromise, WsProvider } from '@polkadot/api';
const provider = new WsProvider('');
const api = await ApiPromise.create({ provider });
// Get latest block
const latestHash = await api.rpc.chain.getBlockHash();
const latestBlock = await api.rpc.chain.getBlock(latestHash);
console.log('Latest block:', {
number: latestBlock.block.header.number.toNumber(),
hash: latestHash.toHex(),
extrinsicsCount: latestBlock.block.extrinsics.length
});
// Get specific block
const blockHash = '0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3';
const block = await api.rpc.chain.getBlock(blockHash);
console.log('Block extrinsics:', block.block.extrinsics.length);
await api.disconnect();import requests
import json
def get_block(block_hash=None):
url = ''
params = [block_hash] if block_hash else []
payload = {
'jsonrpc': '2.0',
'method': 'chain_getBlock',
'params': params,
'id': 1
}
response = requests.post(url, json=payload)
data = response.json()
if 'error' in data:
raise Exception(f"RPC Error: {data['error']}")
return data['result']
# Get latest block
latest_block = get_block()
block_number = int(latest_block['block']['header']['number'], 16)
print(f'Latest block number: {block_number}')
# Get specific block
specific_block = get_block('0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3')
print(f"Extrinsics count: {len(specific_block['block']['extrinsics'])}")Related Methods
chain_getBlockHash- Get block hash by numberchain_getHeader- Get block header onlychain_getFinalizedHead- Get finalized block hash
Kusama RPC with Dwellir
Production-ready Kusama relay chain RPC endpoints, quick start guides, Substrate JSON-RPC coverage, and best practices for building on Kusama with Dwellir.
chain_getBlockHash - Kusama RPC Method
Get block hash by number on Kusama. Essential for historical queries on Polkadot's canary network for real-world testing with live economic conditions.