List machines

List your machines

GET https://api.meria.com/v1/hardwares/:type

This endpoint allows to get all owned machines group by its category (bobs or asics)

Path Parameters

Name
Type
Description

type

string

Apply a filter of machine type to this request (bobs or asics)

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": {
        "asics": [
            {
                "id": 330,
                "type": "S17+",
                "status": "active",
                "hashrate": 36270000000000,
                "currencyCode": "BTC",
                "uptime": 71640,
                "mined": {
                    "BTC": 0.02070824
                }
            }
        ],
        "bobs": [
            {
                "serial": 580099,
                "status": "inactive",
                "uptime": "285",
                "lastActivity": 1568986845,
                "hashrate": 175260000,
                "currencyCode": "ETH",
                "mined": {
                    "ETH": 5.00003053
                }
            }
        ]
    }
}

Last updated