Security Filings
Get the filings list for a specified security.
CLIInstall CLI
bash
# regulatory filings for Apple
longbridge filings AAPL.US
# regulatory filings for Tesla
longbridge filings TSLA.US
# regulatory filings for NVDA
longbridge filings NVDA.USSDK Links
Request
| HTTP Method | GET |
| HTTP URL | /v1/quote/filings |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Stock symbol, use ticker.region format, e.g. AAPL.US |
Request Example
Response
Response Headers
- Content-Type: application/json
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"items": [
{
"id": "627391979864985729",
"title": "Apple | (4) Statement of changes in beneficial ownership",
"description": "",
"file_name": "4 - Apple Inc. (0000320193) (Issuer)",
"file_urls": [
"https://www.sec.gov/Archives/edgar/data/320193/000178052526000005/xslF345X05/wk-form4_1773786674.xml"
],
"publish_at": "1773786677"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | filings_response |
| 500 | Internal error | None |
Schemas
filings_response
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | Filings list |
| ∟ id | string | true | Filing ID |
| ∟ title | string | true | Title |
| ∟ description | string | true | Summary |
| ∟ file_name | string | true | File name |
| ∟ file_urls | string[] | true | List of file URLs |
| ∟ publish_at | string | true | Publish time, Unix timestamp (seconds) |