v1
latestOpenAPI 3.1.02026-07-243035381.4 MBGet mining rewards
/v4/data/mining/rewards
50 credits per API call
Get mining rewards (coinbase outputs) for a UTXO address. This endpoint returns all coinbase rewards received by the address when it successfully mined blocks.
Supported blockchains:
- Bitcoin - bitcoin-mainnet / bitcoin-testnet
- Litecoin - litecoin-mainnet / litecoin-testnet
- Dogecoin - dogecoin-mainnet / dogecoin-testnet
To get started:
- Provide a chain and miner address. The API will return all coinbase rewards for the address.
- Omit filters for full history, or use one filter type: (blockFrom and/or blockTo), (timeFrom and/or timeTo), or (unixFrom and/or unixTo). You cannot mix filter types.
- You can use from-only (e.g. blockFrom) or to-only (e.g. blockTo) or both.
- Rewards are sorted by block number in descending order (newest first).
- Pagination is supported via pageSize (max 500) and offset parameters.
Query parameters
UTXO chains supported for mining rewards (coinbase).
The blockchain to work with.
The miner blockchain address.
Start block number (inclusive). Use with blockTo for block range.
End block number (inclusive). Use with blockFrom for block range.
Start unix timestamp (seconds). Use with unixTo for time range.
End unix timestamp (seconds). Use with unixFrom for time range.
Start time (ISO 8601). Use with timeTo for time range.
End time (ISO 8601). Use with timeFrom for time range.
Number of items to return per page (required, max 500).
The offset to obtain next page of the data.
Response
OK
Example response
[
{
"blockNumber": 900000,
"txHash": "a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456",
"value": 6.25,
"valueAsString": "6.25",
"address": "bc1qwzrryqr3ja8w7hnja2spmkgfdcgvqwp5swz4af4ngsjecfz0w0pqud7k38",
"chain": "bitcoin-mainnet"
}
]