Leader MWR
The /leader/mwr/:id endpoint returns money-weighted return (MWR) index data for a specific leader over a given period. This metric measures investment performance taking into account the timing and size of cash flows.
Method
GET /leader/mwr/:id
:id— the unique identifier of the leader whose MWR data is to be fetched.
Query Parameters
period— Time window for the MWR data in days. Defaults to30.
Response
{
"status": 200,
"data": [
{
"day": "2025-05-07T00:00:00Z",
"mwr": "1.0523"
},
{
"day": "2025-05-08T00:00:00Z",
"mwr": "1.0687"
}
]
}
Fields Explained
Response Array
Each object in the array represents a daily MWR data point.
- day: Date in ISO 8601 format (UTC).
- mwr: The money-weighted return index value for that day.