Get block reward by block number
GET/?module=block&action=getblockreward
Get block reward by block number
Request
Query Parameters
apiKey stringrequired
Example: pk_1234567890
module stringrequired
Possible values: [block
]
action stringrequired
Possible values: [getblockreward
]
blockno integerrequired
Integer block number to check block rewards for.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
message string
result object
blockMiner string
blockNumber string
blockReward string
timeStamp string
uncleInclusionReward string
uncles string
status string
{
"message": "string",
"result": {
"blockMiner": "string",
"blockNumber": "string",
"blockReward": "string",
"timeStamp": "string",
"uncleInclusionReward": "string",
"uncles": "string"
},
"status": "string"
}
Loading...