Download OpenAPI specification:
API to provide important Minutes Network Token data.
Provides:
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.
{- "success": true,
- "data": {
- "USD": {
- "value": "0.3185",
- "currency": {
- "name": "US Dollar",
- "symbol": "USD",
- "format": "US${}",
- "decimals": 2
}, - "updated": 1752014592
}
}
}Get historic pricing for the token in the given period.
| period required | string Enum: "day" "week" "month" "year" Example: day The time period to poll. |
{- "success": true,
- "data": {
- "USD": {
- "prices": [
- {
- "date": 1751961600,
- "high": "0.32442",
- "low": "0.32442",
- "average": "0.32442"
}, - {
- "date": 1751965200,
- "high": "0.32442",
- "low": "0.32442",
- "average": "0.32442"
}
], - "currency": {
- "name": "US Dollar",
- "symbol": "USD",
- "format": "US${}",
- "decimals": 2
}
}
}
}List of all rewards for the given address.
| address required | string Example: 6.415231986149121e+47 The Ethereum address to query. |
{- "success": true,
- "data": [
- {
- "name": "Some Reward",
- "hash": "0x6b4a777b04ce0151fccb24daef1d4bea72354d0dbad01950b758434e6c851bb0",
- "id": "some_reward",
- "account": "0x29d7619dad8db60f415d0a6637f113cb1bdbb0a8",
- "nodeIndex": 0,
- "tokenID": 1,
- "nonce": 1,
- "amount": "100",
- "claimed": false,
- "expired": false,
- "merkleRoot": "0x69a5de8d048175b29c2e40222fffb2173d7da08b259913ef3a539e478d89558f",
- "proof": [
- "0x73de8cb788dc74a4861ed97f804820a4a850a0b9d1cfc0d2f2a964c547dfdb74",
- "0xe4ca0af73ef95a462205e29653a15ea13491b340abc2f2002e87454873025ea1"
], - "claimedAt": null
}, - {
- "name": "Some Other Reward",
- "hash": "0x7f1ac42e63ae407c75ccf0e2b5c307cfebfe758512400dced6730f93942b3194",
- "id": "some_other_reward",
- "account": "0x29d7619dad8db60f415d0a6637f113cb1bdbb0a8",
- "nodeIndex": null,
- "tokenID": null,
- "nonce": 1,
- "amount": "200",
- "claimed": true,
- "expired": false,
- "merkleRoot": null,
- "proof": null,
- "claimedAt": 1751915965
}
]
}Lists the nodes and the amount staked for the given address.
| address required | string Example: 6.415231986149121e+47 The Ethereum address to query. |
{- "success": true,
- "data": [
- {
- "nodeIndex": 0,
- "tokenId": 1,
- "staked": "10000"
}, - {
- "nodeIndex": 1,
- "tokenId": 100,
- "staked": "50000"
}
]
}{- "success": true,
- "data": {
- "receivedTotal": "70000",
- "receivedHistory": [
- {
- "period": "Week 0",
- "value": "15000"
}, - {
- "period": "Week 1",
- "value": "10000"
}, - {
- "period": "Week 2",
- "value": "20000"
}, - {
- "period": "Week 3",
- "value": "25000"
}
], - "accumulatedTotal": "150000.12345"
}
}