A free, 60-second operational health score for your crypto fund.
| Name | Type | Required | Description |
|---|---|---|---|
| aumUsd | number | Optional | — |
| positionsCsv | string | Optional | — |
| mgmtFeePct | number | Optional | — |
| perfFeePct | number | Optional | — |
| hasHwm | boolean | Optional | — |
| hurdlePct | unknown | Optional | — |
| navFrequency | "daily" | "weekly" | "monthly" | "quarterly" | Optional | — |
| reconFrequency | "daily" | "weekly" | "monthly" | "rarely" | Optional | — |
| lpReportingFrequency | "monthly" | "quarterly" | "adhoc" | Optional | — |
| backOfficeHeadcount | number | Optional | — |
| hasFundAdmin | boolean | Optional | — |
| hasAnnualAudit | boolean | Optional | — |
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