Meria API
  • Quick start
  • Masternodes
    • List masternodes
    • Get a masternode
  • Hardwares
    • List machines
    • Get a bob
    • Get an asic
  • Clouds
    • List cloud contracts
    • Get a cloud contract
  • Staking
    • List staking contracts
    • Get a staking contract
  • LENDING
    • List lending contracts
    • Get a lending contract
  • Wallets
    • List wallets
    • Get a wallet
  • Wallet addresses
    • List addresses
    • List addresses for currency
    • Get an address
  • Operations
    • List operations
    • Get an operation
Powered by GitBook
On this page

Was this helpful?

  1. Hardwares

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
                }
            }
        ]
    }
}
PreviousGet a masternodeNextGet a bob

Last updated 2 years ago

Was this helpful?