Docs
ETCMC Documentation
Excel & Google Sheets Integration
Get your node information directly in Excel or Google Sheets without using Telegram.
Get Your Token
Go to your account page to get your API token. If you don't have one yet, it will be generated for you.
https://etcmc-monitor.org/account_update
API Endpoint
Use this API URL with your token to get node information in JSON format.
https://etcmc-monitor.org/api/nodes_info_excel?token=YOUR_TOKEN_HERE
For Excel Users
- Open Excel
- Go to Data → Get Data → From Web
- Paste the API URL with your token
- Click OK - your nodes will appear in a table
For Google Sheets Users
First, you need to create a custom function to import JSON data:
function IMPORTJSON(url) {
var response = UrlFetchApp.fetch(url);
var json = JSON.parse(response.getContentText());
var headers = Object.keys(json[0]);
var data = json.map(row => headers.map(header => row[header]));
data.unshift(headers);
return data;
}
Then in any cell, use this formula:
=IMPORTJSON("https://etcmc-monitor.org/api/nodes_info_excel?token=YOUR_TOKEN_HERE")
Your nodes will automatically appear in the sheet as a formatted table.
API Endpoints
Complete list of available API endpoints for the ETCMC client.
Log in to the system
Log out of the session
Change your login credentials
Get or update system parameters
Get estimated time before next claim
Delete blockchain data
Delete node registration (via GET)
Check if node is registered
Save the port number used by the node (via GET). To use, make a GET request to this route with the port number as a query parameter. Example: /save_port/confirm?port=30303
Get the current saved port
Get CPU/RAM/disk usage statistics
Fetch current Geth output logs
Retrieve system or claim statistics
Trigger ETCPOW claim
Get current ETCPOW token balance
Stop the Geth node (via GET)
Start the Geth node (via GET)
Get current auto-start setting
Get current geth status
Get current Enode
Get Registration Token
Enable or disable auto-start on boot. To use, send a POST request to this route to toggle the status.