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. Masternodes

List masternodes

Get masternodes

GET https://api.meria.com/v1/masternodes

This endpoint allows to get all masternodes

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": [
        {
            "id": 9208,
            "status": "active",
            "collateral": 250,
            "currencyCode": "BITG",
            "reward": 0.00149775,
            "startDate": 1590739635,
            "endDate": null
        },
        {
            "id": 9224,
            "status": "active",
            "collateral": 4.2,
            "currencyCode": "ZEN-42",
            "reward": 0.00001253,
            "startDate": 1590739640,
            "endDate": null
        }
    ]
}
PreviousQuick startNextGet a masternode

Last updated 2 years ago

Was this helpful?