获取投资者已结算持仓信息
Request
ENDPOINT
/quota_distributor/investor/INVESTOR_KEY/investor_position_closingsMÉTODO
GETQuery Params
| 参数 | 描述 |
|---|---|
closing_date | 特定结算日期 |
from_date | 区间起始日期 |
to_date | 区间结束日期 |
注意
使用该资源有两种方式:
- 查询特定日期,将 closing_date 字段作为 query param 发送。
- 查询某个区间,将 from_date 和 to_date 字段作为 query param 发送。
如果同时发送三个参数,将返回错误代码 [QDI000080]
Responses
STATUS
200响应示例
{
"data": [
{
"accounting_date":"2024-03-06",
"total_value":1100.0,
"number_of_quotas":11.0,
"ir_value":0.0,
"iof_value":0.0,
"yield_value":0.0,
"yield_net_value":0.0,
"issuance_serie": {
"name": "1",
"cetip_code": "0000000SN1",
"start_date": "YYYY-MM-DD",
"maturity_date": "YYYY-MM-DD",
"original_quota_value": 0.00000000000000,
"remuneration_type": "yield_curve",
"interest_rate_type": "post_fixed",
"pre_fixed": {
"calendar_base": "workdays / calendar_360 / calendar_365",
"monthly_rate": 0.00000000000000
},
"post_fixed": {
"calendar_base": "workdays / calendar_360 / calendar_365",
"indexer": "di / ipca",
"rate": 1,
"lag": {"reference": "daily / monthly", "amount": 1},
},
"investment_category": "fidc / multi_market",
"condominum_type": "open_ended / close_ended",
"tax_classification": "short_term / long_term",
"investment_restriction_type": "just_professional",
"issuance_serie_key": "UUID",
"minimum_share_capital": 0.0,
"accounting_date": "YYYY-MM-DD",
"sub_class": {
"name": "COTA SÊNIOR",
"sub_class_key": "UUID",
"subordination_level": 1,
"fund_class": {
"name": "SAMPLE FUND CLASS NAME",
"fund_class_key": "UUID",
"document_number": "00.000.000/0000-00"
}
}
}
}
],
"limit": 50,
"page": 0,
"is_last_page": true
}
响应字段
| 字段 | 类型 | 描述 |
|---|---|---|
data | array | Investor Position Closing 对象列表 |
limit | int | 每页返回的对象数量限制 |
page | int | 当前返回的页码 |
is_last_page | boolean | 表示当前页是否为最后一页 |
Investor Position Closing
| 字段 | 类型 | 描述 |
|---|---|---|
accounting_date | string | 结算参考日期 |
total_value | float | 投资者已结算持仓总资产净值 |
number_of_quotas | float | 投资者已结算持仓的份额数量 |
ir_value | float | 投资者已结算持仓的所得税金额 |
iof_value | float | 投资者已结算持仓的金融操作税金额 |
yield_value | float | 投资者已结算持仓的收益金额 |
yield_net_value | float | 投资者已结算持仓的净收益金额 |
issuance_serie | JSON | Issuance Serie 对象 |
Issuance Serie
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
name | string | 发行系列名称 | 最多 255 |
issuance_serie_key | string | 发行系列唯一标识键 | 36 |
cetip_code | string | 发行系列在 CETIP 中的资产代码 | 10 |
start_date | string | 发行系列起始日期 | 10 |
maturity_date | string | 发行系列到期日期 | 10 |
original_quota_value | float | 原始份额价值 | - |
remuneration_type | string | 收益曲线 / 残差 | 最多 50 |
investment_category | string | FIDC / 多市场 | 最多 50 |
condominum_type | string | 开放式 / 封闭式 | 最多 50 |
tax_classification | string | 短期 / 长期 | 最多 50 |
investment_restriction_type | string | 无限制 / 合格投资者 / 专业投资者 | 最多 50 |
minimum_share_capital | float | 最低申购金额 | - |
accounting_date | string | 发行系列会计日期 | 10 |
sub_class | JSON | Sub Class 对象 | - |
Sub Class
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
name | string | 子类名称 | 最多 255 |
sub_class_key | string | 子类唯一标识键 | 36 |
subordination_level | int | 子类从属层级 | - |
fund_class | JSON | Fund Class 对象 | - |
Fund Class
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
name | string | 基金类别名称 | 最多 255 |
fund_class_key | string | 基金类别唯一标识键 | 36 |
document_number | string | 基金类别 CNPJ | - |