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

List cloud contracts

Get cloud contracts

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

This endpoint allows to get cloud contracts.

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": [
        {
            "id": 571,
            "status": "inactive",
            "startDate": false,
            "expirationDate": 1535932800,
            "hashrate": 1000000,
            "currencyCode": "ETC",
            "mined": {
                "ETH": 0.05191667,
                "ZEC": 0.00160224,
                "ETC": 0.09365148
            }
        },
        {
            "id": 6904,
            "status": "active",
            "startDate": false,
            "expirationDate": 1653682867,
            "hashrate": 100000000,
            "currencyCode": "GRIN",
            "mined": {
                "GRIN": 0.19518281
            }
        }
    ]
}
PreviousGet an asicNextGet a cloud contract

Last updated 2 years ago

Was this helpful?