← All calculators

Calculator API

Fund Health Check

POST/api/v1/calc/fund-health-checkTry the free tool →

A free, 60-second operational health score for your crypto fund.

NameTypeRequiredDescription
aumUsdnumberOptional
positionsCsvstringOptional
mgmtFeePctnumberOptional
perfFeePctnumberOptional
hasHwmbooleanOptional
hurdlePctunknownOptional
navFrequency"daily" | "weekly" | "monthly" | "quarterly"Optional
reconFrequency"daily" | "weekly" | "monthly" | "rarely"Optional
lpReportingFrequency"monthly" | "quarterly" | "adhoc"Optional
backOfficeHeadcountnumberOptional
hasFundAdminbooleanOptional
hasAnnualAuditbooleanOptional
cURL
curl -s -X POST "https://nyxchain.org/api/v1/calc/fund-health-check" \
  -H "Content-Type: application/json" \
  -d '{"aumUsd":25000000,"positionsCsv":"","mgmtFeePct":2,"perfFeePct":20,"hasHwm":true,"hurdlePct":null,"navFrequency":"monthly","reconFrequency":"monthly","lpReportingFrequency":"quarterly","backOfficeHeadcount":1,"hasFundAdmin":true,"hasAnnualAudit":false}'
JavaScript
const res = await fetch("https://nyxchain.org/api/v1/calc/fund-health-check", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "aumUsd": 25000000,
  "positionsCsv": "",
  "mgmtFeePct": 2,
  "perfFeePct": 20,
  "hasHwm": true,
  "hurdlePct": null,
  "navFrequency": "monthly",
  "reconFrequency": "monthly",
  "lpReportingFrequency": "quarterly",
  "backOfficeHeadcount": 1,
  "hasFundAdmin": true,
  "hasAnnualAudit": false
}),
})
const data = await res.json()
Python
# POST https://nyxchain.org/api/v1/calc/fund-health-check
import requests

res = requests.post(
    "https://nyxchain.org/api/v1/calc/fund-health-check",
    json={"aumUsd": 25000000, "positionsCsv": "", "mgmtFeePct": 2, "perfFeePct": 20, "hasHwm": True, "hurdlePct": None, "navFrequency": "monthly", "reconFrequency": "monthly", "lpReportingFrequency": "quarterly", "backOfficeHeadcount": 1, "hasFundAdmin": True, "hasAnnualAudit": False},
)
data = res.json()
Try It
Request body (JSON)
Sample response
Object(12)
"aumUsd": 25000000
"positionsCsv": ""
"mgmtFeePct": 2
"perfFeePct": 20
"hasHwm": true
"hurdlePct": null
"navFrequency": "monthly"
"reconFrequency": "monthly"
"lpReportingFrequency": "quarterly"
"backOfficeHeadcount": 1
"hasFundAdmin": true
"hasAnnualAudit": false