GET/api/v1/fund/alerts
The fund's configured risk-alert rules and recent alert events.
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 |
|---|---|---|---|
| eventsLimit | integer | Optional | — |
cURL
curl -s -X GET "https://nyxsuite.com/api/v1/fund/alerts" \
-H "Authorization: Bearer nyx_dk_demo000000000000000000000000000000000000000"JavaScript
const res = await fetch("https://nyxsuite.com/api/v1/fund/alerts", {
method: "GET",
headers: { Authorization: "Bearer nyx_dk_demo000000000000000000000000000000000000000" },
})
const data = await res.json()Python
# GET https://nyxsuite.com/api/v1/fund/alerts
import requests
res = requests.get(
"https://nyxsuite.com/api/v1/fund/alerts",
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.fundAlerts()
# Python (nyxsuite)
from nyxsuite import NyxClient
client = NyxClient(api_key="nyx_dk_demo000000000000000000000000000000000000000", base_url="https://nyxsuite.com/api/v1")
data = client.fund_alerts()Try It
API Key
nyx_dk_dem••••••••0000
Parameters
Sample response
Object(3)
"truncated": false
"rules":
Array(1)
Object(6)
"id": "demo-rule-001"
"type": "drawdown"
"threshold": "0.10"
"direction": "below"
"enabled": true
"createdAt": "2024-03-01T00:00:00.000Z"
"events":
Array(1)
Object(8)
"id": "demo-event-001"
"ruleId": "demo-rule-001"
"type": "drawdown"
"threshold": "0.10"
"actualValue": "0.045"
"status": "resolved"
"triggeredAt": "2026-06-18T00:00:00.000Z"
"resolvedAt": "2026-06-19T00:00:00.000Z"