Minutes Network Token API (v1.0.0)

Download OpenAPI specification:

API to provide important Minutes Network Token data.

Provides:

  • Statistics.
  • Historic blockchain data.
  • Epoch and other reward data.

It has been designed in an RPC-like fashion to allow for both single-request and streaming transports without the need to create dedicated response handlers for each transport type.

Token Data

Current Token Price

Returns the current pricing information pulled from BingX.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": {
    }
}

Token Price History

Get historic pricing for the token in the given period.

path Parameters
period
required
string
Enum: "day" "week" "month" "year"
Example: day

The time period to poll.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": {
    }
}

Token Supply

Gets various on-chain details about the token.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": {
    }
}

Current epoch information

Gets details about the current epoch.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": null
}

Rewards

Rewards by Epoch

Reward distribution values for the given epoch.

path Parameters
number
required
integer <int64>

The epoch number (zero-indexed).

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": null
}

Rewards by Address

List of all rewards for the given address.

path Parameters
address
required
string
Example: 6.415231986149121e+47

The Ethereum address to query.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": [
    ]
}

Reward Summary by Address

Returns a summary of the rewards for the given address.

path Parameters
address
required
string
Example: 6.415231986149121e+47

The Ethereum address to query.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": null
}

Rewards Summary

Returns a summary of rewards given.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": null
}

Balances

Node Balance by Address

Lists the nodes and the amount staked for the given address.

path Parameters
address
required
string
Example: 6.415231986149121e+47

The Ethereum address to query.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": [
    ]
}

DePIN Service Fees

Fees for Current Epoch

DePIN fee summary and history for the current epoch.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": {
    }
}

Insights

Coming soon

Endpoints to provide node insights such as termination data and network status.