block-height - 获取指定高度区块的数据
使用block-height
调用获取指定高度区块的数据。
API调用
GET block-height/$block_height
URI参数:
- $block_height:要查询的高度
查询参数:
- format:返回结果格式,json - JSON格式
API返回值
返回值为JSON对象,主要字段如下:
- blocks:具有指定高度的区块数组
示例代码
使用curl调用block-height
的示例代码如下:
curl https://blockchain.info/block-height/12345?format=json
返回结果如下:
{
"blocks" :
[
--Array Of Blocks at the specified height--
]
}