MathsMine3 provides a public, read-only API that exposes real-time data related to token metrics, game contributions, and community polls. All endpoints return JSON responses.
Token Value
Returns the current token mining value:
GET /api/token-value{
"value": 1.0234,
"updatedAt": "2025-03-23T20:15:00Z"
}Token History
Hourly cumulative token mining values:
GET /api/token-history[
{
"hour": "2025-03-26T18:00:00Z",
"cumulative_reward": 0.00001776052
}
]Top Contributors
List of wallet addresses with the highest mining impact (positive or negative):
GET /api/top-contributors[
{
"wallet": "0xabc...",
"totalImpact": 12.34
}
]Active Polls
Returns all polls currently open for voting:
GET /api/pov/get[
{
"id": "uuid...",
"question": "Is this system fair?",
"created_at": "2025-03-26T23:35:23Z"
}
]Donations — List
Chronological list of recorded donations with hourly timestamps:
GET /api/donations-list[
{
"wallet": "0xd89...6e8ab",
"hour": "2025-10-28T23:00:00.000Z",
"amount_eth": 0.00001
}
]Donations — Total
Aggregate ETH donated (sum across all recorded donations):
GET /api/donations-total{
"total": 0.00001
}