美股 ETF 文件
Longbridge US 账户
此方法仅适用于美国数据中心账户。
列出美股 ETF 的监管文件——招股书、事实说明书和年报。
SDK Links
Parameters
SDK 方法参数。
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | ETF 代码,如 IVV.US |
| size | int | 否 | 最大返回文件数,不填则返回全部 |
Request Example
Response
Response Example
json
{
"files": [
{
"file_name": "iShares Core S&P 500 ETF Prospectus",
"file_path": "https://www.iShares.com/content/dam/iShares/prospectus/en/IVV.pdf",
"update_date": "2024-01-15",
"code": "IVV_PROSPECTUS",
"format": "pdf"
},
{
"file_name": "iShares Core S&P 500 ETF Annual Report",
"file_path": "https://www.iShares.com/content/dam/iShares/reports/en/IVV_AR.pdf",
"update_date": "2024-02-01",
"code": "IVV_ANNUAL",
"format": "pdf"
}
]
}Response Status
| 状态码 | 描述 | 结构 |
|---|---|---|
| 200 | 成功 | UsETFFileList |
| 400 | 请求错误 | None |
Schemas
UsETFFilesResponse
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| files | USETFFile[] | 是 | ETF 监管文件列表 |
USETFFile
| 名称 | 类型 | 描述 |
|---|---|---|
| file_name | string | 文件名称 |
| file_path | string | 文件路径或 URL |
| update_date | string | 最后更新日期 |
| code | string | 文件代码 |
| format | string | 文件格式(如 pdf) |