Search SEC EDGAR Companies
search_edgar_companySearch SEC EDGAR registrants (US-listed companies) by ticker, company name, or CIK. Returns the 10-digit zero-padded CIK needed by the other edgar_* tools.
Args:
query (required): ticker ('AAPL', 'BRK-B' or 'BRK.B'), company-name fragment ('Berkshire'), or CIK number ('320193')
limit: max results, 1-50 (default 10)
Returns: {count, companies: [{cik, ticker, title}]} ranked exact-ticker > exact-name > prefix > substring.
Examples:
"find Apple's CIK" -> {query: 'AAPL'}
"companies named Berkshire" -> {query: 'Berkshire', limit: 5}
Use when: you need a CIK or to disambiguate a company name before calling get_edgar_financials/filings/insider_trades (those also accept tickers directly, so for an exact ticker you can skip this step). Don't use for: Korean companies (use search_dart_company) or private companies not registered with the SEC.
Errors: no match -> error suggesting a shorter name fragment; only SEC registrants with a listed ticker are searchable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max matches to return (default 10) | |
| query | Yes | Ticker (e.g. 'AAPL', 'BRK-B'), company-name fragment (e.g. 'Berkshire'), or CIK number |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| companies | Yes |