Miners Endpoint

This API endpoint provides relation in between Filecoin Miner IDs and their EVP reports that include Greenscores.

Get All Miners and their EVP reports

Please note that this endpoint supports pagination and only shows 100 EVP report records at a time by default. Below is an example of how to use with and without pagination as well as how to filter by date.

//Default example: this will return 100 records from the first page

curl -X GET 'https://api.novaenergy.ai/api/miners' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json'



//Example with pagination: this will return 20 records from page 2 

curl -X GET 'https://api.novaenergy.ai/api/miners?page=2&limit=20' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json'
  
  
//Example with filtering by date
curl -X GET 'https://api.novaenergy.ai/api/miners?date=2022-09-21' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json'

Get the EVP report data for a Specific Miner by its Miner ID

By passing in the miner_id you will see the EVP data for that miner.

This endpoint also supports filtering by date.

Query Parameters

Name
Type
Description

miner_id

String

the id string of the miner, for example, f01234

date

String

optional string param to filter by date if needed

Filter By Date

Last updated