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" } ]