GET/api/v1/fund/trades
The fund's executed exchange trades (real connections only), cursor-paginated, most recent first.
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 |
|---|---|---|---|
| from | string | Optional | — |
| to | string | Optional | — |
| symbol | string | Optional | — |
| side | "buy" | "sell" | Optional | — |
| limit | integer | Optional | — |
| cursor | string | Optional | — |
cURL
curl -s -X GET "https://nyxsuite.com/api/v1/fund/trades" \
-H "Authorization: Bearer nyx_dk_demo000000000000000000000000000000000000000"JavaScript
const res = await fetch("https://nyxsuite.com/api/v1/fund/trades", {
method: "GET",
headers: { Authorization: "Bearer nyx_dk_demo000000000000000000000000000000000000000" },
})
const data = await res.json()Python
# GET https://nyxsuite.com/api/v1/fund/trades
import requests
res = requests.get(
"https://nyxsuite.com/api/v1/fund/trades",
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.fundTrades()
# Python (nyxsuite)
from nyxsuite import NyxClient
client = NyxClient(api_key="nyx_dk_demo000000000000000000000000000000000000000", base_url="https://nyxsuite.com/api/v1")
data = client.fund_trades()Try It
API Key
nyx_dk_dem••••••••0000
Parameters
Sample response
Object(3)
"rows":
Array(3)
Object(10)
"id": "demo-trade-003"
"exchange": "Binance"
"symbol": "BTC/USDT"
"side": "buy"
"price": "64000.00"
"amount": "0.50000000"
"cost": "32000.00"
"feeCost": "32.00000000"
"feeCurrency": "USDT"
"executedAt": "2026-07-20T14:32:00.000Z"
Object(10)
"id": "demo-trade-002"
"exchange": "Coinbase"
"symbol": "ETH/USD"
"side": "sell"
"price": "3400.00"
"amount": "10.00000000"
"cost": "34000.00"
"feeCost": "17.00000000"
"feeCurrency": "USD"
"executedAt": "2026-07-19T09:15:00.000Z"
Object(10)
"id": "demo-trade-001"
"exchange": "Bybit"
"symbol": "ARB/USDT"
"side": "buy"
"price": "1.10"
"amount": "50000.00000000"
"cost": "55000.00"
"feeCost": "55.00000000"
"feeCurrency": "USDT"
"executedAt": "2026-07-18T11:02:00.000Z"
"nextCursor": null
"truncated": false