Disclosure Feed (FinBridge DB)
get_disclosure_feedRecent regulatory disclosures from the local finbridge database (filings table, refreshed nightly + intraday for KR), newest first — positioned as a faster-than-news primary source. By default returns only MATERIAL filings: US Form 8-K (current reports) and KR 주요사항보고서 (major events: capital raises, M&A, convertible bonds, buybacks, etc.).
Args:
market: 'kr' (DART), 'us' (EDGAR), or 'all' (default)
company: optional — restrict to one company (US ticker, KR 6-digit code, or name)
material_only: default true (8-K / KR type-B only); false = all filing types
forms: optional explicit form_type filter (e.g. ['10-K','8-K'] or ['A','B']); overrides material_only
days: look-back window in days, 1-120 (default 14); or use from/to
from/to: optional explicit YYYY-MM-DD range (overrides days)
limit: 1-100 (default 30); response_format: 'markdown'|'json'
Returns: {count, market, since, rows:[{source, company_name, form_type, title, filed_date, url, items?}]}. 'items' (8-K item codes) is included when available.
Examples:
Latest US material events this week: {market:'us', days:7}
Samsung's recent major-event filings: {company:'005930', material_only:true, days:90}
All of a company's filings: {company:'AAPL', material_only:false}
Use when: scanning for catalysts / breaking corporate events, or one company's recent filings. Don't use for filing BODIES (open the url) or for financial statement values (get_dart_financials / get_edgar_financials / query_db). Notes: Filing metadata only; bodies are at the linked source URLs. Not investment advice. Errors: empty result is not an error (count 0).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Explicit end date YYYY-MM-DD | |
| days | No | Look-back window in days (default 14) | |
| from | No | Explicit start date YYYY-MM-DD (overrides days) | |
| forms | No | Explicit form_type filter; overrides material_only | |
| limit | No | Max rows (default 30) | |
| market | No | Market: 'kr', 'us', or 'all' (default) | all |
| company | No | Optional company filter: US ticker, KR 6-digit code, or name | |
| material_only | No | Only material filings (US 8-K / KR type-B). Default true | |
| response_format | No | 'markdown' or 'json' | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rows | Yes | ||
| count | Yes | ||
| since | No | ||
| market | No | ||
| company | No |