Skip to main content
The RPC API enables you to query the network and get details about specific blocks or chunks.

Quick Reference


Block Details

Queries network and returns block for given height or hash. You can also use finality param to return latest block details. Note: You may choose to search by a specific block or finality, you cannot choose both.
  • method: block
  • params: finality OR block_id

Block Effects

Returns changes in a block for given block height or hash. Includes changes like account_touched, access_key_touched, data_touched, contract_code_touched.
  • method: block_effects
  • params: finality OR block_id

Chunk Details

Returns details of a specific chunk. You can run a block details query to get a valid chunk hash.
  • method: chunk
  • params: chunk_id OR block_id + shard_id

Error Handling