Gos.cx: Best Alternative Crypto Mining Poolmain
  Gos.cx PoolHome Pool Wallet Miners Explorers  telegram  discord  twitter    | |
SOLO and PARTY mining is available. Just set m=solo, or m=party.YourPartyPassword to your password field. Fee is just 0.9%
Gos.cx API

Wallet Status

General wallet information:

https://gos.cx/api/wallet?address=WALLET_ADDRESS

result example:
{
	"currency": "DGB",
	"pending": 113.34134795257,
	"balance": 0.00000000,
	"paid24h": 760.74991800,
	"earned24h": 874.09126595,
	"earnedTotal": 15730.66091893
}
Extended wallet information:

https://gos.cx/api/walletEx?address=WALLET_ADDRESS

result example:
{
	"currency": "DGB",
	"balance": 0,
	"balanceUSD": 0,
	"immature": 0,
	"confirmed": 113.34134795,
	"pending": 113.34134795,
	"pendingUSD": 2.86,
	"paid24h": 760.749918,
	"paid24hUSD": 19.21,
	"earned24h": 874.09126595,
	"earned24hUSD": 22.07,
	"earned7d": 4944.87891253,
	"earned7dUSD": 124.84,
	"earnedAll": 15730.66091893,
	"earnedAllUSD": 397.14,
	"userhash": 4988785580.046344,
	"poolhash": 66727642138.39128,
	"nethash": 7741571892685.5,
	"percent": 7.8222,
	"miners": [
		{
			"version": "cgminer/4.9.0",
			"password": "",
			"ID": "0",
			"algo": "scrypt",
			"difficulty": 224192,
			"subscribe": 0,
			"accepted": 752263498.988,
			"rejected": 0
		},
			...
	]
}

Pool Status

https://gos.cx/api/status

example result:
{
	"lyra2z": {
		"name": "lyra2z",
		"coins": 5,
		"fees": 0.9,
		"hashrate": 6745445166,
		"workers": 753,
		"estimate_current": "0.00001710",
		"estimate_last24h": "0.00002267",
		"actual_last24h": "0.02243",
		"hashrate_last24h": 5971066715.3542
	},
	...
}

Coins information

Request for all coins:

https://gos.cx/api/currencies

example result:
{
	"RVN": {
		"algo":"x16r",
		"port":3637,
		"name":"Ravencoin",
		"height":462819,
		"block_reward":5000,
		"fees":0,
		"fees_solo":0,
		"workers":69,
		"workers_shared":42,
		"workers_solo":27,
		"shares":312300,
		"hashrate_shared":2034325473,
		"hashrate_solo":3918155410,
		"network_hashrate":5380363048703.5,
		"difficulty":75747,
		"estimate":"0.00570",
		"24h_blocks":1,
		"24h_blocks_shared":0,
		"24h_blocks_solo":1,
		"24h_btc":0.0214473,
		"24h_btc_shared":0,
		"24h_btc_solo":0.0214473,
		"24h_coins":239.08,
		"24h_coinsUSD":4.31,
		"percent_blocks":0,
		"lastblock":462365,
		"lastblock_shared":457771,
		"timesincelast_shared":304493,
		"lastblock_solo":462365,
		"timesincelast_solo":27432
	},
	...
}
Request for one coin:

https://gos.cx/api/currencies?c=SYMBOL

example result:
{
	symbol":"RVN",
	"algo":"x16r",
	"port":3637,
	"name":"Ravencoin",
	"height":462819,
	"block_reward":5000,
	"fees":0,
	"fees_solo":0,
	"workers":69,
	"workers_shared":42,
	"workers_solo":27,
	"shares":312300,
	"hashrate_shared":2034325473,
	"hashrate_solo":3918155410,
	"network_hashrate":5380363048703.5,
	"difficulty":75747,
	"estimate":"0.00570",
	"24h_blocks":1,
	"24h_blocks_shared":0,
	"24h_blocks_solo":1,
	"24h_btc":0.0214473,
	"24h_btc_shared":0,
	"24h_btc_solo":0.0214473,
	"24h_coins":239.08,
	"24h_coinsUSD":4.31,
	"percent_blocks":0,
	"lastblock":462365,
	"lastblock_shared":457771,
	"timesincelast_shared":304493,
	"lastblock_solo":462365,
	"timesincelast_solo":27432
}