Outstanding Mnav
curl --request GET \
--url https://api.blockworks.com/v1/metrics/outstanding-mnav \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/metrics/outstanding-mnav"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockworks.com/v1/metrics/outstanding-mnav', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"projectName": [
{
"date": "2025-08-10",
"value": 123456.789
},
{
"date": "2025-08-11",
"value": 234567.89
},
{
"date": "2025-08-12",
"value": 345678.901
}
]
}API Reference
Outstanding Mnav
Retrieve the ‘outstanding-mnav’ metric for supported projects.
GET
/
v1
/
metrics
/
outstanding-mnav
Outstanding Mnav
curl --request GET \
--url https://api.blockworks.com/v1/metrics/outstanding-mnav \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/metrics/outstanding-mnav"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockworks.com/v1/metrics/outstanding-mnav', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"projectName": [
{
"date": "2025-08-10",
"value": 123456.789
},
{
"date": "2025-08-11",
"value": 234567.89
},
{
"date": "2025-08-12",
"value": 345678.901
}
]
}Authorizations
Query Parameters
Project slug (comma-separated for multiple).
Available options:
ASST, BMNR, BNC, BNKK, BRR, BTBT, BTCM, BTCS, CEP, CEPO, DFDV, ETHM, ETHZ, FGNX, FWDI, GAME, HSDT, HYPD, IPST, MSTR, NAKA, PURR, SBET, SLAI, SLMT, SMLR, SQNS, STSS, SUIG, UPXI, XXI Example:
"ASST"
Start date (YYYY-MM-DD)
End date (YYYY-MM-DD)
Response
OK