美股 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) |