GET/api/v1/fund/dealing-calendar
The fund's dealing calendar configuration: frequency, notice days, and settlement days.
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.
No parameters — call it with no query string.
cURL
curl -s -X GET "https://nyxsuite.com/api/v1/fund/dealing-calendar" \
-H "Authorization: Bearer nyx_dk_demo000000000000000000000000000000000000000"JavaScript
const res = await fetch("https://nyxsuite.com/api/v1/fund/dealing-calendar", {
method: "GET",
headers: { Authorization: "Bearer nyx_dk_demo000000000000000000000000000000000000000" },
})
const data = await res.json()Python
# GET https://nyxsuite.com/api/v1/fund/dealing-calendar
import requests
res = requests.get(
"https://nyxsuite.com/api/v1/fund/dealing-calendar",
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.fundDealingCalendar()
# Python (nyxsuite)
from nyxsuite import NyxClient
client = NyxClient(api_key="nyx_dk_demo000000000000000000000000000000000000000", base_url="https://nyxsuite.com/api/v1")
data = client.fund_dealing_calendar()Try It
API Key
nyx_dk_dem••••••••0000
Sample response
Object(1)
"calendar":
Object(5)
"enabled": true
"frequency": "monthly"
"noticeDays": 5
"settlementDays": 2
"updatedAt": "2026-07-01T00:00:00.000Z"