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.
/api/statusLive 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
}
}/api/currenciesOne 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
}
}/api/wallet?address=ADDRESSBalance, unpaid amount and 24h payouts for a mining address.
{
"unsold": 0,
"balance": 0.00000000,
"unpaid": 0.00050362,
"paid24h": 0.00000000,
"total": 0.00050362
}/api/walletEx?address=ADDRESSEverything /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
}
]
}/api/timeCurrent pool server time as a unix timestamp (plain text).
1785227497