T
Developers

Pool API

Free, open, no API key. Base URL https://pool.honest.money. Every endpoint returns JSON with permissive CORS, so you can call it straight from a browser, a shell script or a rig monitor. The legacy yiimp endpoints below are drop-in replacements for the ones on the old pool interface — swap the hostname and your tooling keeps working.

Miners connect to stratum+tcp://stratum.pool.honest.money:3433 (scrypt). Chain-level data for TEXITcoin lives in the explorer API, and you can read about the TEXITcoin chain and Omni layer 2 at texitcoin.org/build.

GET/api/status
Pool status (per algo)

Live hashrate, connected workers, miner count and enabled coin count for each algorithm. Drop-in replacement for the legacy yiimp /api/status.

{
  "scrypt": {
    "name": "scrypt",
    "port": 3433,
    "coins": 5,
    "fees": 0,
    "hashrate": 18836133794863,
    "workers": 1212,
    "miners": 11,
    "blocks24h": 877
  }
}
GET/api/currencies
Currencies (per coin)

One entry per coin mined on the pool, including merged-mining aux chains. Heights, network difficulty, 24h block counts and seconds since the last block found.

{
  "TXC": {
    "algo": "scrypt",
    "port": 3433,
    "name": "Texitcoin",
    "symbol": "TXC",
    "height": 332175,
    "workers": 1212,
    "hashrate": 18836133794863,
    "difficulty": 770771.568,
    "24h_blocks": 438,
    "lastblock": 332175,
    "timesincelast": 42
  }
}
GET/api/wallet?address=ADDRESS
Wallet status

Balance, unpaid amount and 24h payouts for a mining address.

{
  "unsold": 0,
  "balance": 0.00000000,
  "unpaid": 0.00050362,
  "paid24h": 0.00000000,
  "total": 0.00050362
}
GET/api/walletEx?address=ADDRESS
Wallet status + workers

Everything /api/wallet returns, plus a `miners` array with one row per worker (algo, difficulty, hashrate, accepted/rejected shares in the last 10 minutes).

{
  "unsold": 0,
  "balance": 0,
  "unpaid": 0.00050362,
  "paid24h": 0,
  "total": 0.00050362,
  "miners": [
    {
      "version": "cgminer/4.11",
      "ID": "L9-container3-042",
      "algo": "scrypt",
      "difficulty": 65536,
      "subscribe": 1,
      "accepted": 812,
      "rejected": 0,
      "hashrate": 15600000000
    }
  ]
}
GET/api/time
Server time

Current pool server time as a unix timestamp (plain text).

1785227497
Fair use
Responses are cached at the edge for 15–30 seconds; please poll no faster than that and cache on your side. If you need higher volume or a data mirror, get in touch and we will sort it out.