Redemption Calendar
Query upcoming redemption forecast for the next 8 days across all portfolios managed by the IM.
HTTP Request
GET /sapi/v1/capital-connect/redemption/calendar
Weight(UID)
30000
Request Parameters
None. IM identity resolved from API key.
Response
| Field | Type | Description |
|---|---|---|
| items | List | Per-portfolio daily forecast entries |
| items > portfolioId | String | CC portfolio ID (e.g. CC00123456) |
| items > portfolioName | String | Portfolio name |
| items > currency | String | Portfolio currency (e.g. USDT, BTC) |
| items > forecastDate | Long | Forecast date as Unix timestamp (ms) |
| items > units | String | Total units pending redemption |
| items > navPerUnit | String | NAV per unit (T-1). null if not available |
| items > estimatedAmount | String | units x navPerUnit. null if NAV not available |
Example Response
{
"items": [
{
"portfolioId": "CC00123456",
"portfolioName": "Alpha Strategy Fund",
"currency": "USDT",
"forecastDate": 1711584000000,
"units": "1000.00000000",
"navPerUnit": "1.05230000",
"estimatedAmount": "1052.30000000"
}
]
}