Access blockchain data programmatically without running a local wallet. All endpoints return JSON data and can be accessed via standard HTTP GET requests.
Base URL: https://explorer.sha256coin.eu/api/
{
"blocks": 12500,
"difficulty": 0.00024414,
"networkhashps": 12345678,
"connections": 8
}
{
"circulatingSupply": 1631600,
"totalSupply": 84000000,
"maxSupply": 84000000,
"blocks": 16316
}
| Parameter | Type | Description |
|---|---|---|
| count | integer | Number of blocks to return (optional, default: 20) |
| page | integer | Page number for pagination (query parameter) |
| Parameter | Type | Description |
|---|---|---|
| hashOrHeight | string/integer | Block hash or block height |
| Parameter | Type | Description |
|---|---|---|
| txid | string | Transaction ID (hash) |
| Parameter | Type | Description |
|---|---|---|
| address | string | S256 address (s2... bech32 or S... legacy format) |
{
"address": "Sfu8VLiVd77sKuShL7aXU65egZr8MLCNrh",
"balance": 100.50000000,
"received": 250.00000000,
"sent": 149.50000000,
"txCount": 15,
"transactions": [...]
}
{
"name": "SHA256COIN",
"price": 0.00123456,
"volume": 5432.10,
"cap": 123456.78,
"liquidity": 987.65
}
Source: Live Coin Watch
| Parameter | Type | Description |
|---|---|---|
| query | string | Block height, block hash, transaction ID, or address |
{
"type": "block",
"data": { ... }
}
{
"blockcount": 12500
}
{
"difficulty": 0.00024414
}
{
"networkhashps": 12345678.90
}
| Parameter | Type | Description |
|---|---|---|
| hours | integer | Number of hours of history (default: 24, query parameter) |
{
"status": "ok",
"database": "connected",
"node": "connected",
"lastSync": "2025-12-23T18:00:00.000Z"
}