Alchemy MCP Plugin

get_block_with_transactions

Retrieve a blockchain block along with its transactions using either the block number or block hash. Facilitates detailed analysis of transaction data for blockchain development and monitoring.

Instructions

Get a block with its transactions

Input Schema

NameRequiredDescriptionDefault
blockHashNoThe block hash
blockNumberNoThe block number

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "blockNumber" ] }, { "required": [ "blockHash" ] } ], "properties": { "blockHash": { "description": "The block hash", "type": "string" }, "blockNumber": { "description": "The block number", "type": "string" } }, "type": "object" }
ID: p99w73336q