All URIs are relative to https://api.minergate.com/1.0
Method | HTTP request | Description |
---|---|---|
getBlockchainStatus | GET /{cc}/status | Blockchain Status |
getPoolProfitRating | GET /pool/profit-rating | Pool Profit-Rating |
getPoolTopHashrate | GET /pool/top/hashrate | Pool Top Hashrate |
Object getBlockchainStatus(cc)
Blockchain Status
Returns the blockchain data of the specified currency. Returned values are as follows: chain height, last block timestamp, network difficulty, network hashrate, base reward.
var MinergateApi = require('minergate_api');
var apiInstance = new MinergateApi.PublicApi();
var cc = "cc_example"; // String | Shorthand name for crypto currency. e.g. Bitcoin = btc
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getBlockchainStatus(cc, callback);
Name | Type | Description | Notes |
---|---|---|---|
cc | String | Shorthand name for crypto currency. e.g. Bitcoin = btc |
Object
No authorization required
- Content-Type: Not defined
- Accept: application/json
['String'] getPoolProfitRating()
Pool Profit-Rating
Returns the list of all currencies sorted by profitability.
var MinergateApi = require('minergate_api');
var apiInstance = new MinergateApi.PublicApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getPoolProfitRating(callback);
This endpoint does not need any parameter.
['String']
No authorization required
- Content-Type: Not defined
- Accept: application/json
Object getPoolTopHashrate()
Pool Top Hashrate
Returns the lists of top 10 miners for each currency.
var MinergateApi = require('minergate_api');
var apiInstance = new MinergateApi.PublicApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getPoolTopHashrate(callback);
This endpoint does not need any parameter.
Object
No authorization required
- Content-Type: Not defined
- Accept: application/json