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

Get an asic

Get an asic

GET https://api.meria.com/v1/hardwares/asics/:id

This endpoint allows to get an owned asic.

Path Parameters

Name
Type
Description

id

integer

ID of the asic to get

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": {
        "id": 330,
        "type": "S17+",
        "status": "active",
        "hashrate": 36270000000000,
        "currencyCode": "BTC",
        "uptime": 71640,
        "mined": {
            "BTC": 0.02070824
        }
    }
}
{
    "success": false,
    "error": {
        "code": 404,
        "message": "RESSOURCE_NOT_FOUND"
    }
}
PreviousGet a bobNextList cloud contracts

Last updated 2 years ago

Was this helpful?