Logo

Next Payout: 23:25 UTC in 11 minutes


YiiMP API

YiiMP API is a Simple REST API that allows you to interact with the YiiMP mining pool.

Wallet Status

Get the status of a wallet address.

https://latinminers.com/api/wallet?address=WALLET_ADDRESS

{
    "unsold": 0.00050362,
    "balance": 0.00000000,
    "unpaid": 0.00050362,
    "paid24h": 0.00000000,
    "total": 0.00050362
}
        

https://latinminers.com/api/walletEx?address=WALLET_ADDRESS

{
    "unsold": 0.00050362,
    "balance": 0.00000000,
    "unpaid": 0.00050362,
    "paid24h": 0.00000000,
    "total": 0.00050362,
    "miners": [{
        "version": "ccminer\/1.8.2",
        "password": "d=96",
        "ID": "",
        "algo": "decred",
        "difficulty": 96,
        "subscribe": 1,
        "accepted": 82463372.083,
        "rejected": 0
    }]
}
        

Pool Status

Get the status of the mining pool.

https://latinminers.com/api/status

{
    "x11": {
        "name": "x11",
        "port": 3533,
        "coins": 10,
        "fees": 1,
        "hashrate": 269473938,
        "workers": 5,
        "estimate_current": "0.00053653",
        "estimate_last24h": "0.00036408",
        "actual_last24h": "0.00035620",
        "hashrate_last24h": 269473000,
        "rental_current": "3.61922463"
    },

    ...
}
        

Currencies

Get information about the supported currencies.

https://latinminers.com/api/currencies

{
    "BTX": {
        "algo": "bitcore",
        "port": 3556,
        "name": "BitCore",
        "height": 18944,
        "workers": 181,
        "shares": 392,
        "hashrate": 7267227499,
        "24h_blocks": 329,
        "24h_btc": 0.54471295,
        "lastblock": 18945,
        "timesincelast": 67
    },

    ...
}