get_documents
Retrieve financial document listings for stock symbols including SEC filings, earnings transcripts, and reports. Returns document IDs and metadata to enable content access.
Instructions
List documents for a symbol. Retrieve a list of available documents (filings, transcripts, reports) for a given symbol → Returns [{id: string, title: string, category: string, reported_time: number, is_available: boolean, is_pdf: boolean, fiscal_period?: string, fiscal_year?: number, form?: string}]. Use the id field with get_document to read content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | (Required) Symbol code in Exchange:Symbol format | |
| filter | No | (Optional) JSONata expression to filter/transform the API response server-side before it reaches you. Use this to extract only the fields or rows you need, reducing token usage. See https://jsonata.org for syntax. |