NMR token data
Numerai publishes current NMR supply and staking metadata at https://nmr-info.numer.ai/nmr.
Supply history
Daily total and circulating supply are available from:
GET https://nmr-info.numer.ai/nmr/historyThe response contains one point per UTC day from the NMR contract deployment through the current day. total_supply and circulating_supply are JSON strings so their full 18-decimal precision is preserved.
Use the optional, inclusive start_date and end_date query parameters to select a range. Dates must use YYYY-MM-DD format:
GET https://nmr-info.numer.ai/nmr/history?start_date=2025-01-01&end_date=2025-01-31{
"interval": "day",
"start_date": "2025-01-01",
"end_date": "2025-01-31",
"data": [
{
"date": "2025-01-01",
"total_supply": "...",
"circulating_supply": "..."
}
]
}Before the NMR 2.0 upgrade, historical total supply follows on-chain mint events and confirmed tournament stake burns. NMR 2.0 reset total supply to the supply cap; subsequent history subtracts confirmed on-chain burns from that cap. Historical circulating supply additionally subtracts the combined balance of the treasury addresses published by the current endpoint. Before NMR 2.0, it also subtracts minted NMR that remained undistributed in the token contract.

