← All endpoints

Fund Data API

Investors

GET/api/v1/fund/investors

The fund's investor register: display name, status, and open subscription-lot counts/units.

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.

NameTypeRequiredDescription
limitintegerOptional
cURL
curl -s -X GET "https://nyxsuite.com/api/v1/fund/investors" \
  -H "Authorization: Bearer nyx_dk_demo000000000000000000000000000000000000000"
JavaScript
const res = await fetch("https://nyxsuite.com/api/v1/fund/investors", {
  method: "GET",
  headers: { Authorization: "Bearer nyx_dk_demo000000000000000000000000000000000000000" },
})
const data = await res.json()
Python
# GET https://nyxsuite.com/api/v1/fund/investors
import requests

res = requests.get(
    "https://nyxsuite.com/api/v1/fund/investors",
    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.fundInvestors()

# Python (nyxsuite)
from nyxsuite import NyxClient

client = NyxClient(api_key="nyx_dk_demo000000000000000000000000000000000000000", base_url="https://nyxsuite.com/api/v1")
data = client.fund_investors()
Try It
API Key
nyx_dk_dem••••••••0000
Parameters
Sample response
Object(2)
"truncated": false
"rows":
Array(2)
Object(6)
"id": "demo-investor-001"
"displayName": "Anchor Peak Capital LP"
"status": "active"
"createdAt": "2024-03-01T00:00:00.000Z"
"openLotCount": 2
"openUnits": "6000.000000000000000000"
Object(6)
"id": "demo-investor-002"
"displayName": "Northgate Digital SPC"
"status": "active"
"createdAt": "2024-06-15T00:00:00.000Z"
"openLotCount": 1
"openUnits": "4000.000000000000000000"