US ETF Files
Longbridge US Accounts
This method is only available for US data-center accounts.
List regulatory documents for a US ETF — prospectus, fact sheets, and annual reports.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | ETF symbol, e.g. IVV.US |
| size | int | NO | Maximum number of files to return; omit to return all |
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
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsETFFileList |
| 400 | Bad request | None |
Schemas
UsETFFilesResponse
| Name | Type | Required | Description |
|---|---|---|---|
| files | USETFFile[] | true | List of ETF regulatory documents |
USETFFile
| Name | Type | Description |
|---|---|---|
| file_name | string | Document file name |
| file_path | string | Document file path or URL |
| update_date | string | Last update date |
| code | string | Document code |
| format | string | File format (e.g. pdf) |