Nodes Endpoint

This API endpoint provides all nodes of different provider network types and their associated Energy Validation Process (EVP) data.

Current Supported Provider Types

Provider types that exist:

  • If you are a Filecoin Miner, miner_id - your Network Type is 1

  • If you are an ETH Validator, Eth Validator id - your Network Type is 2

  • If you are a Solana Validator, Solana ID - your Network Type is 3

  • If you are an ICP Node Operator, id - your Network Type is 4

  • If you are a Bitcoin Miner, id - your Network Type is 5

Get a list of all nodes with associated EVP data

GET

curl -X GET 'https://api.novaenergy.ai/api/nodes' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'network: YOUR_NETWORK_TYPE' \
  -H 'Content-Type: application/json'
  
  
// Optional Filter by date 

curl -X GET 'https://api.novaenergy.ai/api/nodes?date=2022-09-21' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'network: YOUR_NETWORK_TYPE' \
  -H 'Content-Type: application/json'

Retrieve a specific Node by provider network type's node id.

Provider types that exist:

  • If you are a Filecoin Miner, please type your miner_id - your Network Type is 1

  • If you are an ETH Validator, please type your Eth Validator id - your Network Type is 2

  • If you are a Solana Validator, please type your Solana ID - your Network Type is 3

  • If you are an ICP Node Operator, please type your id - your Network Type is 4

  • If you are a Bitcoin Miner, please type your id - your Network Type is 5

Last updated