# Performance (by reporting entity) Daily and accumulated performance metrics for a reporting entity over a date range. Default is one row per (date, currency) for the entity as a whole; `expand` breaks the totals down by portfolio, depository, instrument, or instrument class. A separate endpoint, /private-markets, returns point-in-time private-market metrics (NAV, multiples, IRR, cash-flow summary). ## Endpoints GET /v2/performance/reporting-entities/:id Aggregated daily/accumulated performance over a date range. GET /v2/performance/reporting-entities/:id/private-markets Private-market performance metrics. ## Path params id (required) — Reporting-entity identifier (Mongo ObjectID). ## Attributes (`type: performance`) date (string, ISO 8601) ccyCode (string) — ISO 4217 reporting currency. dailyNetCashFlow (number) dailyReturn (number) — Profit/loss on the day. dailyTwr (number) — Time-weighted return on the day. accumulatedReturn (number) — Total profit/loss since the period start. accumulatedTwr (number) — TWR since the period start. ## Relationships reportingEntity (required) depository (optional) — Set when expand=depositories. portfolio (optional) — Set when expand=portfolios. instrument (optional) — Set when expand=instruments. instrumentClass (optional) — Set when expand=instrumentClasses. instrumentClassDetailed (optional) — Set when expand=instrumentClassesDetailed.