# List your mining pool on MiningBoard

> Listing is free. There is no listing fee, no paid placement, and no ranking that can be bought.
> Publish your pool's stats in the JSON format below and we scrape them every 5 minutes — your live
> hashrate, miner count and blocks appear on your coin's page automatically.

- **Submit at:** https://miningboard.com/de/pools/submit
- **JSON Schema:** https://miningboard.com/de/pools/spec/v1
- **Spec version:** `miningboard-pool-v1`
- **Poll interval:** every 5 minutes

## So funktioniert es

1. **** — 
2. **** — 
3. **** — 

## Zwei Wege zum Eintrag

Eine API ist keine Voraussetzung. Die meisten Pools in unserem Verzeichnis haben überhaupt keinen öffentlichen Statistik-Endpunkt — wir listen sie aus Katalogdaten und ordnen ihre Hashrate aus aggregierten Quellen zu. Ein Endpunkt macht Ihre Zahlen schlicht zu Erstanbieterdaten: live und exakt.

| Track | | |
|---|---|---|
| **Voller Eintrag — Sie veröffentlichen einen Endpunkt** | Empfohlen | Wir lesen Ihre Zahlen alle fünf Minuten direkt bei Ihnen. Ihr Pool zeigt Live-Hashrate, Miner-Anzahl, Blöcke der letzten 24 Stunden und den zuletzt gefundenen Block, dazu eine Zuverlässigkeitsbewertung auf Basis der Antwortkonstanz Ihres Endpunkts. |
| **Verzeichniseintrag** | Keine API nötig | Name, Website, Gebühr, Auszahlungsmodell, unterstützte Coins und Logo. Ihr Pool erscheint im Verzeichnis und auf den Coin-Seiten, die Sie minen — mit Hashrate aus aggregierten Quellen statt von Ihnen. |

## Die Endpunkt-Spezifikation

Ein öffentlicher GET-Endpunkt pro Coin, der application/json zurückgibt. Jedes Feld bildet direkt etwas ab, das wir speichern — wir fragen nichts ab, was wir anschließend ignorieren.

```json
{
  "spec": "miningboard-pool-v1",
  "coin": "ZEC",
  "algorithm": "Equihash",
  "updated_at": "2026-09-08T22:33:55Z",
  "pool": {
    "hashrate": 1.23e15,
    "miners": 412,
    "workers": 980,
    "blocks_24h": 7,
    "last_block_at": "2026-09-08T22:14:55Z",
    "fee_percent": 1.5,
    "payout_scheme": "PPS+",
    "min_payout": 0.001
  },
  "network": {
    "hashrate": 8.9e15,
    "difficulty": 120000000,
    "height": 2900123,
    "block_reward": 1.5625,
    "block_time": 75
  },
  "stratum": [
    { "url": "stratum+tcp://zec.example.com:3333", "region": "eu", "tls": false }
  ]
}
```

### Feldreferenz

| Feld | Pflicht | Hinweise |
|---|---|---|
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |
| `` | Optional |  |

### Optional: ein Index-Endpunkt

Wenn Sie eine Liste Ihrer unterstützten Coins samt Fundort der Statistiken veröffentlichen, erfordert eine spätere Coin keine neue Einreichung — wir übernehmen sie aus dem Index.

```json
{
  "spec": "miningboard-pool-index-v1",
  "pool": { "name": "Example Pool", "homepage": "https://example.com", "fee_percent": 1.5 },
  "coins": [
    { "coin": "ZEC", "stats_url": "https://api.example.com/v1/pool/zec" },
    { "coin": "BTC", "stats_url": "https://api.example.com/v1/pool/btc" }
  ]
}
```

## Regeln für Ihren Endpunkt

Das sind keine Vorlieben. Jede Regel ist eine Bedingung, die unsere Pipeline tatsächlich durchsetzt; ein Endpunkt, der eine davon verletzt, kann nicht als Live-Quelle geführt werden.

1. **** — 
2. **** — 
3. **** — 
4. **** — 
5. **** — 
6. **** — 

## Validate before you submit

`POST https://miningboard.com/de/pools/submit/validate` with `{"url": "https://api.example.com/v1/pool/zec"}` returns a
field-by-field conformance report:

```json
{
  "ok": true,
  "url": "https://api.example.com/v1/pool/zec",
  "checks": [
    { "field": "pool.hashrate", "status": "pass", "detail": "1.23 PH/s (1230000000000000 H/s)" },
    { "field": "network.hashrate.cross_check", "status": "pass", "detail": "Within 10x of our ZEC consensus." }
  ]
}
```

`status` is one of `pass`, `warn`, `fail`, `info`. `ok` is true when nothing failed. The same check
runs server-side when you submit, so the report you see is the report our team sees.

The most valuable check is `network.hashrate.cross_check`: we compare your self-reported network
hashrate against our own multi-source chain consensus. Unit errors — publishing TH/s where the spec
says raw H/s — are the most common mistake and this catches them immediately.

## Nach dem Absenden

- **** — 
- **** — 
- **** — 
- **** — 
