Skip to Content

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.US

Request

HTTP MethodGET
HTTP URL/v1/quote/filings

Query Parameters

NameTypeRequiredDescription
symbolstringYESStock 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

StatusDescriptionSchema
200Successfilings_response
500Internal errorNone

Schemas

filings_response

NameTypeRequiredDescription
itemsobject[]trueFilings list
∟ idstringtrueFiling ID
∟ titlestringtrueTitle
∟ descriptionstringtrueSummary
∟ file_namestringtrueFile name
∟ file_urlsstring[]trueList of file URLs
∟ publish_atstringtruePublish time, Unix timestamp (seconds)