MLRT Explorer API

Public REST API for Malairte blockchain data

Base URL: https://explorer.malairtebitcoin.com/api/v1

All endpoints return JSON. No authentication required for public endpoints.

GET /api/v1/blocks

Returns the latest blocks in descending order by height.

Query Parameters

ParameterTypeDefaultDescription
limitinteger10Max 100

Example Response

{
  "data": [
    {
      "hash": "0000000a3f7e9b2c...",
      "height": 84219,
      "mined_at": "2026-04-14T23:00:00Z",
      "tx_count": 3,
      "size": 1248,
      "reward": "50.00000000",
      "difficulty": "28351971.40800000",
      "miner_address": "MLRTminer1xA3kP..."
    }
  ]
}
GET /api/v1/blocks/{hashOrHeight}

Returns full details for a single block by its hash or height.

Path Parameters

ParameterDescription
hashOrHeight64-char hex hash or integer block height

Example

GET /api/v1/blocks/84219
GET /api/v1/blocks/0000000a3f7e9b2c...
GET /api/v1/transactions

Returns the latest transactions, most recent first.

Query Parameters

ParameterTypeDefault
limitinteger10 (max 100)
statusstringall
GET /api/v1/transactions/{txid}

Returns full transaction details for the given 64-char transaction ID.

{
  "data": {
    "txid": "a1b2c3d4e5f6...",
    "block_hash": "0000000a3f7e9b2c...",
    "block_height": 84219,
    "is_coinbase": false,
    "size": 226,
    "total_input": "15.50000000",
    "total_output": "15.49970000",
    "fee": "0.00030000",
    "confirmations": 1,
    "status": "confirmed",
    "broadcast_at": "2026-04-14T22:50:00Z"
  }
}
GET /api/v1/addresses/{address}

Returns balance and summary for a wallet address.

{
  "data": {
    "address": "MLRTminer1xA3kP...",
    "balance": "422150.00000000",
    "total_received": "489230.50000000",
    "total_sent": "67080.50000000",
    "tx_count": 9812
  }
}
GET /api/v1/stats

Returns current network statistics snapshot.

{
  "data": {
    "block_height": 84219,
    "hashrate": "4.82 TH/s",
    "hashrate_raw": 4820000000000,
    "difficulty": "28351971.40800000",
    "circulating_supply": "4210950.00000000",
    "total_supply": "21000000.00000000",
    "active_nodes": 347,
    "mempool_count": 12,
    "avg_block_time_seconds": "597.34"
  }
}
GET /api/v1/supply

Returns current supply information including circulating, total, and percentage mined.

{
  "data": {
    "circulating_supply": "4210950.00000000",
    "total_supply": "21000000.00000000",
    "percentage_mined": "20.0521",
    "block_height": 84219
  }
}