← All calculators

Calculator API

LP Report Grader

POST/api/v1/calc/lp-report-graderTry the free tool →

Grade your monthly LP update against what institutional investors expect.

NameTypeRequiredDescription
reportTextstringOptional
reportingFrequency"monthly" | "quarterly" | "adhoc"Optional
cURL
curl -s -X POST "https://nyxchain.org/api/v1/calc/lp-report-grader" \
  -H "Content-Type: application/json" \
  -d '{"reportText":"","reportingFrequency":"monthly"}'
JavaScript
const res = await fetch("https://nyxchain.org/api/v1/calc/lp-report-grader", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "reportText": "",
  "reportingFrequency": "monthly"
}),
})
const data = await res.json()
Python
# POST https://nyxchain.org/api/v1/calc/lp-report-grader
import requests

res = requests.post(
    "https://nyxchain.org/api/v1/calc/lp-report-grader",
    json={"reportText": "", "reportingFrequency": "monthly"},
)
data = res.json()
Try It
Request body (JSON)
Sample response
Object(2)
"reportText": ""
"reportingFrequency": "monthly"