GET /v2/limits/:id/status Get the current status of a single limit on a specific date — including whether the limit is breached and the current value. Path params: id (required) — Limit identifier (UUID). Query params: date (required) — ISO 8601 date. Response (200 OK): { "data": { "id": "string (UUID — same as the limit ID)", "type": "limit-status", "attributes": { "date": "ISO 8601 date", "limitType": "", "isBreached": "boolean (optional) — true iff currentValue is outside [min, max]", "currentValue": "number — the aggregated value: proportional → fraction of total holdings under the limit, absolute → absolute amount in ccyCode, limit-group → null" } } }