get_sec_filings
Retrieve SEC filings for a company by specifying ticker symbol, limit, and filing type to access financial disclosures and regulatory reports.
Instructions
Get all SEC filings for a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
limit: Number of SEC filings to return (default: 10)
filing_type: Type of SEC filing (e.g. 10-K, 10-Q, 8-K)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filing_type | No | ||
limit | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filing_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filing Type"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_sec_filingsArguments",
"type": "object"
}