getBtcBlockTxids
Retrieve all transaction IDs within a Bitcoin block by providing its block hash. Ideal for cryptocurrency research and Ethereum-based automation tasks.
Instructions
Returns a list of transaction IDs in a block, given the block hash.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockHash | Yes | Block hash to fetch txids from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockHash": {
"description": "Block hash to fetch txids from",
"type": "string"
}
},
"required": [
"blockHash"
],
"type": "object"
}