GET/api/v1/fund/lp-reports
Recent LP report metadata: period covered, status, and a short narrative preview.
Requires an Authorization: Bearer <API key> header (a nyx_dk_… developer key, minted from the developer console at /developers/console). Reflects Nyx's shadow NAV, reconciled against your fund administrator.
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | Optional | — |
cURL
curl -s -X GET "https://nyxsuite.com/api/v1/fund/lp-reports" \
-H "Authorization: Bearer nyx_dk_demo000000000000000000000000000000000000000"JavaScript
const res = await fetch("https://nyxsuite.com/api/v1/fund/lp-reports", {
method: "GET",
headers: { Authorization: "Bearer nyx_dk_demo000000000000000000000000000000000000000" },
})
const data = await res.json()Python
# GET https://nyxsuite.com/api/v1/fund/lp-reports
import requests
res = requests.get(
"https://nyxsuite.com/api/v1/fund/lp-reports",
headers={"Authorization": "Bearer nyx_dk_demo000000000000000000000000000000000000000"},
)
data = res.json()SDK
// TypeScript (@nyxsuite/sdk)
import { NyxClient } from '@nyxsuite/sdk'
const client = new NyxClient({ apiKey: 'nyx_dk_demo000000000000000000000000000000000000000', baseUrl: 'https://nyxsuite.com/api/v1' })
const data = await client.fundLpReports()
# Python (nyxsuite)
from nyxsuite import NyxClient
client = NyxClient(api_key="nyx_dk_demo000000000000000000000000000000000000000", base_url="https://nyxsuite.com/api/v1")
data = client.fund_lp_reports()Try It
API Key
nyx_dk_dem••••••••0000
Parameters
Sample response
Object(2)
"truncated": false
"rows":
Array(1)
Object(7)
"id": "demo-lpreport-001"
"periodStart": "2026-06-01"
"periodEnd": "2026-06-30"
"status": "sent"
"generatedAt": "2026-07-01T08:00:00.000Z"
"sentAt": "2026-07-01T09:00:00.000Z"
"contentPreview": "June was a constructive month for the fund, with NAV rising net of fees on broad-based crypto strength..."